@if (session()->has('message'))
{{ session('message') }}
@endif
| Amount |
Wallet Type |
Address |
Status |
Transaction Type |
Date |
ref |
@foreach ($withdrawals->sortDesc() as $withdrawal)
| ${{number_format($withdrawal->amount, 2, '.', ',')}} |
{{$withdrawal->wallet->name}} |
{{Str::limit($withdrawal->address, 25)}} |
@if ($withdrawal->status == 0)
Pending
@elseif($withdrawal->status == 1)
Approved
@else
Declined
@endif
|
{{$withdrawal->transaction_type}} |
{{$withdrawal->created_at->format('d/m/y')}} |
{{$withdrawal->ref}} |
@endforeach