Generated on {{ now()->format('F d, Y H:i') }}
Total Withdrawals: {{ $withdrawals->count() }}
Total Amount: USD {{ number_format($withdrawals->sum('amount'), 2) }}
| Transaction # | Client Name | Account Number | Amount | Description | Payment Method | Date | Created By |
|---|---|---|---|---|---|---|---|
| {{ $withdrawal->transaction_number }} | {{ $withdrawal->savingsAccount->client->full_name }} | {{ $withdrawal->savingsAccount->account_number }} | USD {{ number_format($withdrawal->amount, 2) }} | {{ $withdrawal->description ?? 'N/A' }} | {{ ucfirst($withdrawal->payment_method ?? 'N/A') }} | {{ $withdrawal->transaction_date->format('M d, Y') }} | {{ $withdrawal->creator->name ?? 'N/A' }} |
| No withdrawals found. | |||||||