| ASSETS | Amount ({{ $currency }}) | |
|---|---|---|
| {{ $group['group_name'] ?? 'Other Assets' }} | {{ number_format($group['group_total'] ?? 0, 2) }} | |
| {{ $sub['subcategory_name'] }} | {{ number_format($sub['subcategory_total'], 2) }} | |
| {{ $acc['account_code'] }} | {{ $acc['account_name'] }} | {{ number_format($acc['balance'], 2) }} |
| TOTAL ASSETS | {{ number_format($data['totals']['assets'], 2) }} | |
| LIABILITIES & EQUITY | Amount ({{ $currency }}) | |
|---|---|---|
| {{ $group['group_name'] ?? 'Other' }} | {{ number_format($group['group_total'] ?? 0, 2) }} | |
| {{ $sub['subcategory_name'] }} | {{ number_format($sub['subcategory_total'], 2) }} | |
| {{ $acc['account_code'] }} | {{ $acc['account_name'] }} | {{ number_format($acc['balance'], 2) }} |
| Current Year Profit/Loss | {{ number_format($current_profit_or_loss, 2) }} | |
| TOTAL LIABILITIES & EQUITY | {{ number_format(($data['totals']['liabilities_equity'] ?? 0) + $current_profit_or_loss, 2) }} | |