{{-- Print button --}}
{{-- Report Header --}}
@if($shop_infos) Logo

{{ $shop_infos->shop_name ?? '' }}

{{ $shop_infos->address ?? '' }}
@endif
Loan Installment Collection — Summary Report
Period: {{ \Carbon\Carbon::parse($from)->format('d M Y') }}  to  {{ \Carbon\Carbon::parse($to)->format('d M Y') }}
{{-- Table --}} @forelse($rows as $i => $row) @empty @endforelse @if($rows->isNotEmpty()) @endif
# Group Name Members Installment (Tk) Extra Charge (Tk) Savings (Tk) Total (Tk)
{{ $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) }}
No collection records found for this period.
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) }}
{{-- Footer --}}