@include('microfin/miscellaneous/monthEndPendingAlert')
{{-- div for Company --}} {{$company->name}}
{{$company->address}}
{{'Reporting '.$reportLevel .' level'}}
{{-- {{'Funding Organization: '.$filFundingOrgName}}
--}} Age Wise Member Details Report {{-- @include('microfin/miscellaneous/draftReport', ['filDate' => $filDate]) --}}
{{-- report info div --}}
Reporting Month : {{$filterDate}} Print Date : {{$currentDate}}
{{-- end report info div --}}
@php $totalDisbursement = 0; $totalOutstanding = 0; $totalRecovery = 0; $totalRecovareble = 0; $totalDue = 0; @endphp @forelse ($detailsData as $key=>$data) @php $col = count($data['loanDetails']); @endphp @foreach ($data['loanDetails'] as $item) @php $totalDisbursement += $item['disbursementAmount'] ; $totalOutstanding += $item['loanOutstanding'] ; $totalRecovery += $item['recoveryAmount'] ; $totalRecovareble += $item['recoverableAmount'] ; $totalDue += $item['dueAmount'] ; @endphp @endforeach {{-- --}} @empty @endforelse
SL Name Code Age Smart/NID No Mobile No Disbursement Date Disbursement Amount Loan Outstanding Amount Recovarable Amount Recovery Amount Due Amount
{{$loop->iteration}} {{$data['name']}} {{$data['code']}} {{$data['age']}} {{$data['nId']}} {{$data['mobileNo']}}{{$item['disbursementDate']}} {{number_format($item['disbursementAmount'],2)}} {{number_format($item['loanOutstanding'],2)}} {{number_format($item['recoveryAmount'],2)}} {{number_format($item['recoverableAmount'],2)}} {{number_format($item['dueAmount'],2)}}
No Data Found!
Total {{number_format($totalDisbursement,2)}} {{number_format($totalOutstanding,2)}} {{number_format($totalRecovery,2)}} {{number_format($totalRecovareble,2)}} {{number_format($totalDue,2)}}
{{-- responseDIV --}}
{{-- end first table --}}