| Amount | Account | Status | Date |
|---|---|---|---|
| ${{ number_format($w->amount_usd, 2) }} | {{ $w->bank_name }} {{ $w->account_number }} |
@if($w->status === 'paid') Paid @elseif(in_array($w->status, ['failed','declined','cancelled'])) {{ ucfirst($w->status) }} @else {{ str_replace('_', ' ', $w->status) }} @endif | {{ $w->created_at ? $w->created_at->format('d M Y') : '' }} |