Month & Year wise Loan Application & Sanction Report
{{-- FILTER FORM --}}
{{-- REPORT TABLE --}}
| Member Name |
Year |
Month |
Total Applications |
Total Applied Amount |
Total Sanctioned Amount |
Status |
@forelse($data as $row)
| {{ $row->member_name }} |
{{ $row->year }} |
{{ $row->month_name }} |
{{ $row->total_applications }} |
₹ {{ number_format($row->total_applied_amount, 2) }} |
₹ {{ number_format($row->total_sanctioned_amount, 2) }} |
{{ $row->status_names }} |
@empty
| No Records Found |
@endforelse
@if(count($data))
| Grand Total: |
{{ $data->sum('total_applications') }} |
{{ number_format($data->sum('total_applied_amount'), 2) }} |
{{ number_format($data->sum('total_sanctioned_amount'), 2) }} |
|
@endif