@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)
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')
All Withdrawals
@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
All Transaction
@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
@endsection @section('modals') @endsection @section('js') @endsection