Wallet Balance
@php $balance = $user->balance + $user->ref_balance @endphp${{ number_format($balance, 2) }}
*****
@forelse ($transactions as $item)
@if($item->type === 'wallet')
@else
@if(!empty($item->iban))
@endif
@endif
@empty
@endforelse
{{ Str::ucfirst($item->status) }}
{{ $item->created_at->format('M d, Y h:i A')
}}
Sender
{{ $item->sender->name }}
Receiver
{{ optional($item->reciever)->name }}
Bank Name
{{ $item->bank_name }}
Account Name
{{ $item->account_name }}
Account Number
{{ $item->account_number }}
IBAN
{{ $item->iban }}
SWIFT Code
{{ $item->swift_code }}
Transaction Type
{{ Str::ucfirst($item->payment_type) }}
Amount
${{ number_format($item->amount) }}
Previous Balance
${{ number_format($item->prev_balance, 2) }}
Current Balance
${{ number_format($item->cur_balance, 2) }}
No Data Available at this Moment
{{ $transactions->render("pagination::bootstrap-4") }}