{{-- Print button --}}
{{-- Report Header --}}
{{-- Table --}}
| # |
Group Name |
Members |
Installment (Tk) |
Extra Charge (Tk) |
Savings (Tk) |
Total (Tk) |
@forelse($rows as $i => $row)
| {{ $i + 1 }} |
{{ $row->group_name }} |
{{ $row->member_count }} |
{{ number_format($row->principal, 2) }} |
{{ number_format($row->extra_charge, 2) }} |
{{ number_format($row->savings, 2) }} |
{{ number_format($row->total, 2) }} |
@empty
|
No collection records found for this period.
|
@endforelse
@if($rows->isNotEmpty())
| Grand Total |
{{ $rows->sum('member_count') }} |
{{ number_format($rows->sum('principal'), 2) }} |
{{ number_format($rows->sum('extra_charge'), 2) }} |
{{ number_format($rows->sum('savings'), 2) }} |
{{ number_format($rows->sum('total'), 2) }} |
@endif
{{-- Footer --}}