DEBTORS SUMMARY REPORT
Report Date:
{{ now()->format('d M Y') }}
Organisation:
{{ auth()->user()->organisation->name }}
Customer
Total Invoiced
Total Paid
Outstanding Balance
@foreach($rows as $row)
{{ $row['customer']->name }}
{{ number_format($row['total_invoiced'],2) }}
{{ number_format($row['total_paid'],2) }}
{{ number_format($row['outstanding'],2) }}
@endforeach