Transactions
Transactions
List of transactions in your account.
@if($type == 'deposit')
@if(!empty($trans))
@foreach($trans as $tran)
Deposit via {{$tran->dpayment()->name}}
{{$tran->dwallet()->sym}}
{{get_date($tran->created_at , 'M d, Y ')}}
{{$tran->status}}
+ {{__format_number($tran->amount)}}
{{$user->user_curr()}}
{{__format_number($tran->sys_amount)}} {{system_settings('currency')}}
@endforeach
@else
none
@endif
@elseif($type == 'withdraw')
@if(!empty($trans))
@foreach($trans as $tran)
Withdraw via {{$tran->dmode()->name}}
{{$tran->dwallet_from()->sym}}
{{get_date($tran->created_at , 'M d, Y ')}}
{{$tran->status}}
- {{__format_number($tran->amount)}}
{{$user->user_curr()}}
{{__format_number($tran->sys_amount)}} {{system_settings('currency')}}
@endforeach
@else
none
@endif
@else
@if(!empty($trans))
@foreach($trans as $tran)
@if(!empty($tran->dplan()))
Received from {{$tran->dplan()->name}}
@endif
{{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