@include('templates.pdf_header', [ 'organisation' => $organisation, 'asOfDate' => $asOfDate, 'title' =>Receivables Ageing Report as of {{ $date }} ]) @foreach($data as $row) @endforeach
Customer Current 1-30 Days 31-60 Days 61-90 Days 91+ Days Total Due
{{ $row['customer_name'] }} {{ number_format($row['current'], 2) }} {{ number_format($row['1_30_days'], 2) }} {{ number_format($row['31_60_days'], 2) }} {{ number_format($row['61_90_days'], 2) }} {{ number_format($row['91_plus_days'], 2) }} {{ number_format($row['total_due'], 2) }}