@include('templates.pdf_header', [ 'organisation' => $organisation, 'asOfDate' => $asOfDate, 'currency' => $currency, 'currency_code' => $currency, 'title' => 'BALANCE SHEET REPORT' ]) @foreach($data['assets'] as $category) @foreach($category['accounts'] as $account) @endforeach @endforeach
ASSETS Amount ({{ $currency }})
{{ $category['subcategory_name'] }} {{ number_format($category['subcategory_total'], 2) }}
{{ $account['account_code'] }} {{ $account['account_name'] }} {{ number_format($account['balance'], 2) }}
TOTAL ASSETS {{ number_format($data['totals']['assets'], 2) }}
@foreach($data['liabilities'] as $category) @foreach($category['accounts'] as $account) @endforeach @endforeach @foreach($data['equity'] as $category) @foreach($category['accounts'] as $account) @endforeach @endforeach
LIABILITIES & EQUITY Amount ({{ $currency }})
{{ $category['subcategory_name'] }} {{ number_format($category['subcategory_total'], 2) }}
{{ $account['account_code'] }} {{ $account['account_name'] }} {{ number_format($account['balance'], 2) }}
{{ $category['subcategory_name'] }} {{ number_format($category['subcategory_total'], 2) }}
{{ $account['account_code'] }} {{ $account['account_name'] }} {{ number_format($account['balance'], 2) }}
Current Year Profit/Loss {{ number_format($current_profit_or_loss, 2) }}
TOTAL LIABILITIES & EQUITY {{ number_format($data['totals']['liabilities_equity'] + $current_profit_or_loss, 2) }}