@include('templates.pdf_header', [ 'organisation' => $organisation, 'asOfDate' => $asOfDate, 'currency' => $currency, 'title' => 'INCOME STATEMENT' ])
Description
Amount ({{ $currency }})
@foreach($data as $group)
{{ $group->group_name }}
{{ number_format($group->group_total, 2) }}
@foreach($group->subcategories as $sub) @include('accounts.partials.income_subcategory_recursive', ['sub' => $sub, 'level' => 1]) @endforeach @endforeach
Gross Profit
{{ number_format($totals['Gross Profit'], 2) }}
Net Profit
{{ number_format($totals['Net Profit'], 2) }}