Bank Statement
{{-- Filter Form --}}Statement for {{ $label }}
Opening Balance: UGX {{ number_format($openingBalance ?? 0, 0) }}
Closing Balance: UGX {{ number_format($closingBalance ?? 0, 0) }}
{{-- Transaction Search --}}
Closing Balance: UGX {{ number_format($closingBalance ?? 0, 0) }}
| Date | Description | Reference | Debit | Credit | Closing Balance |
|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($tx->entry_date)->format('F j, Y') }} | {{ $tx->memo ?? 'N/A' }} | {{ $tx->reference ?? '—' }} | {{ $tx->debit ? number_format($tx->debit, 0) : '-' }} | {{ $tx->credit ? number_format($tx->credit, 0) : '-' }} | {{ number_format($runningBalance, 0) }} |
| Totals | {{ number_format($totalDebit, 0) }} | {{ number_format($totalCredit, 0) }} | |||
No transactions found for this period.
@endif