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