| {{ $loop->iteration }} |
{{ $s->title }} |
{{ $s->year }} |
@if($s->balance && $s->balance != 0)
{{ number_format($s->balance, 2) }}
@endif
|
@if($s->receipts)
{{ __('Invoice Breakdown') }}
| Date |
Reference |
Amount Paid ($) |
Balance ($) |
@if($s->receipts)
@foreach($s->receipts as $r)
| {{ $r->created_at }} |
{{ $r->ref_no }} |
{{ number_format($r->amt_paid, 2) }} |
{{ number_format($r->balance, 2) }} |
@endforeach
@endif
@else
{{ __('None') }}
@endif
|
@if(Qs::userIsTeamSA())
{{ __('Write Off Debt') }}
@endif
|
@empty