| Bank Statement Closing Balance | {{ number_format($reconciliation->statement_closing_balance, 2) }} |
| Book (GL) Balance | {{ number_format($reconciliation->reconciled_balance, 2) }} |
| Date | Reference / Description | Amount | Action Needed |
|---|---|---|---|
| {{ optional($item->bankTransaction)->date ?? 'N/A' }} | {{ optional($item->bankTransaction)->description ?? 'N/A' }} | {{ number_format($item->matched_amount, 2) }} | Post to GL |
| Date | Description | Amount |
|---|---|---|
| {{ optional($item->journalTransaction)->date ?? 'N/A' }} | {{ optional($item->journalTransaction)->description ?? 'N/A' }} | {{ number_format($item->matched_amount, 2) }} |
| Bank Ref | Bank Date | GL Ref | GL Date | Amount |
|---|---|---|---|---|
| {{ optional($t->bankTransaction)->reference ?? 'N/A' }} | {{ optional($t->bankTransaction)->date ?? 'N/A' }} | {{ optional($t->journalTransaction)->reference ?? 'N/A' }} | {{ optional($t->journalTransaction)->date ?? 'N/A' }} | {{ number_format($t->matched_amount, 2) }} |
| Bank Only Total | {{ number_format($totals['bank_only_total'], 2) }} |
| Book Only Total | {{ number_format($totals['book_only_total'], 2) }} |
| Matched Total | {{ number_format($totals['matched_total'], 2) }} |
| Reconciliation Total | {{ number_format($totals['reconciliation_total'], 2) }} |
| Difference | {{ number_format($totals['difference'], 2) }} |
| Match Type | Amount |
|---|---|
| {{ ucfirst($type) }} | {{ number_format($amount, 2) }} |