@include('templates.pdf_header', [ 'organisation' => $organisation, 'title' => 'INCOME REPORT', 'currency_code' => $currency ])
Period: {{ $startDate }} to {{ $endDate }}
@php $grandTotal = 0; @endphp @foreach($incomeAccounts as $account) @php $grandTotal += $account->total; @endphp @endforeach
Account Amount
{{ $account->name }} {{ number_format($account->total, 2) }}
GRAND TOTAL INCOME {{ number_format($grandTotal, 2) }}