@extends('template.coin.layouts.base') @section('title', __('Fund History')) @section('css') @endsection @section('content')
Transactions

Transactions

List of transactions in your account.

@if($type == 'deposit')
All Deposits
@if(!empty($trans)) @foreach($trans as $tran)
{{$tran->type}} Deposit via {{$tran->get_meta_value('payment')}}
{{$tran->dwallet()->sym}}
{{get_date($tran->deposit_date , 'M d, Y ')}} {{$tran->status}}
@if($tran->status == 'Processed') + @endif {{__format_number($tran->amount)}} {{$user->user_curr()}}
{{$tran->exchanged_amount}} {{$tran->exchanged_curr}}
@endforeach @else none @endif
@elseif($type == 'withdraw')
All Withdrawals
@if(!empty($trans)) @foreach($trans as $tran)
{{$tran->type}} withdrawal via {{data_get($tran->details , 'method')}}
{{$tran->account}} Account
{{get_date($tran->created_at , 'M d, Y ')}} {{$tran->status}}
@if($tran->status == 'Approved') - @endif {{__format_number($tran->amount)}} {{$user->user_curr()}}
{{__format_money($tran->exchanged_amt , data_get($tran->details , 'ctype'))}} {{$tran->exchanged_curr}}
@endforeach @else none @endif
@else
All Transaction
@if(!empty($trans)) @foreach($trans as $tran)
{{$tran->descr}}
{{get_date($tran->created_at , 'M d, Y ')}} Completed
+ {{number_format($tran->amount,2 , '.',',')}} {{$user->user_curr()}}
{{number_format($tran->amount,2 , '.',',')}} {{$user->user_curr()}}
@endforeach @else none @endif
@endif
@endsection @section('modals') @endsection @section('js') @endsection