{{$page_info['page_name']}}
| Sanction Officer |
Due Cases |
Closed Cases |
Pending Cases |
Ratio % |
@if(count($recoverySanctionVolumeData) > 0)
@php
$totalDueCases = 0;
$totalClosedCases = 0;
$totalPendingCases = 0;
$totalRatio = 0;
@endphp
@foreach($recoverySanctionVolumeData as $data)
@php
// Aggregating the totals
$totalDueCases += $data->DueCases;
$totalClosedCases += $data->ClosedCases;
$totalPendingCases += $data->PendingCases;
$totalRatio += $data->Ratio;
@endphp
{{ getUserNameById('users','userID',$data->creditedBy,'displayName') }}
|
{{ number_format($data->DueCases) }}
|
{{ number_format($data->ClosedCases) }}
|
{{ number_format($data->PendingCases) }}
|
{{ number_format($data->Ratio, 2) }}%
|
@endforeach
| Total |
{{ number_format($totalDueCases) }}
|
{{ number_format($totalClosedCases) }}
|
{{ number_format($totalPendingCases) }}
|
{{ number_format($totalRatio / count($recoverySanctionVolumeData), 2) }}%
|
@else
| No Records Found |
@endif
| Branch |
Due Cases |
Closed Cases |
Pending Cases |
Ratio % |
@if(count($recoveryBranchVolumeData) > 0)
@php
$totalDueCases = 0;
$totalClosedCases = 0;
$totalPendingCases = 0;
$totalRatio = 0;
@endphp
@foreach($recoveryBranchVolumeData as $data)
@php
// Aggregating the totals
$totalDueCases += $data->DueCases;
$totalClosedCases += $data->ClosedCases;
$totalPendingCases += $data->PendingCases;
$totalRatio += $data->Ratio;
@endphp
|
{{ getUserNameById('lms_cities','cityID',$data->branch,'cityName') }}
|
{{ number_format($data->DueCases) }}
|
{{ number_format($data->ClosedCases) }}
|
{{ number_format($data->PendingCases) }}
|
{{ number_format($data->Ratio, 2) }}%
|
@endforeach
| Total |
{{ number_format($totalDueCases) }}
|
{{ number_format($totalClosedCases) }}
|
{{ number_format($totalPendingCases) }}
|
{{ number_format($totalRatio / count($recoverySanctionVolumeData), 2) }}%
|
@else
| No Records Found |
@endif
@endsection
@section('custom-js')
@endsection