As of {{ $asOfDate }}
|
Total Assets
{{ $fmt($totalAssets ?? 0) }}
|
Total Liabilities
{{ $fmt($totalLiabilities ?? 0) }}
|
Total Equity
{{ $fmt($equity ?? 0) }}
|
Difference
{{ $fmt($difference ?? 0) }}
|
|
Assets
|
Liabilities & Equity
|
| Account | Type | Account No | Opening | Debit | Credit | Balance |
|---|---|---|---|---|---|---|
| {{ $row['name'] }} | {{ ucfirst(str_replace('_', ' ', $row['type'])) }} | {{ $row['account_number'] ?: '—' }} | {{ $fmt($row['opening']) }} | {{ $fmt($row['debit']) }} | {{ $fmt($row['credit']) }} | {{ $fmt($row['balance']) }} |
| No active account found. | ||||||
| Total | {{ $fmt($totalOpeningBalances ?? 0) }} | {{ $fmt(collect($accountRows)->sum('debit')) }} | {{ $fmt(collect($accountRows)->sum('credit')) }} | {{ $fmt($totalAccountBalances ?? 0) }} | ||
|
Profit / Retained Earnings Summary
|
Owner Capital Summary
|