+ Record Payment
@if (session('status'))
{{ session('status') }}
@endif
@foreach ($buckets as $bucket => $amt) @endforeach
Bucket Amount
{{ $bucket }} days Rs {{ number_format($amt, 2) }}
@foreach ($summary as $row) @endforeach
Customer Opening Balance Invoiced Credited Paid Balance
{{ $row['customer']->name }} Rs {{ number_format($row['opening'], 2) }} Rs {{ number_format($row['invoiced'], 2) }} Rs {{ number_format($row['credited'], 2) }} Rs {{ number_format($row['paid'], 2) }} Rs {{ number_format($row['balance'], 2) }}