| Opening Balance | {{ number_format($reportData['opening_balance'], 2) }} |
| Total Receipts | {{ number_format($reportData['total_receipts'], 2) }} |
| Total Payments/Transfers | {{ number_format($reportData['total_payments'], 2) }} |
| Closing Balance | {{ number_format($reportData['closing_balance'], 2) }} |
| Date | Description | Ref | In | Out | Balance |
|---|---|---|---|---|---|
| {{ $txn['date'] }} |
{{ $txn['description'] }}
|
{{ $txn['reference'] }} | {{ $txn['in'] > 0 ? number_format($txn['in'], 2) : '' }} | {{ $txn['out'] > 0 ? number_format($txn['out'], 2) : '' }} | {{ number_format($txn['balance'], 2) }} |
| No transactions found. | |||||
| PERIOD TOTALS | {{ number_format($reportData['period_totals']['in'], 2) }} | {{ number_format($reportData['period_totals']['out'], 2) }} | |||