@extends('layouts.master') @section('page-title',$page_info['page_title']) @section('main-section')

{{$page_info['page_name']}}

Recovery 360º Sanction wise {{$filterShow}}

@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 @endforeach @else @endif
Sanction Officer Due Cases Closed Cases Pending Cases Ratio %
table-user {{ getUserNameById('users','userID',$data->creditedBy,'displayName') }} {{ number_format($data->DueCases) }} {{ number_format($data->ClosedCases) }} {{ number_format($data->PendingCases) }} {{ number_format($data->Ratio, 2) }}%
Total {{ number_format($totalDueCases) }} {{ number_format($totalClosedCases) }} {{ number_format($totalPendingCases) }} {{ number_format($totalRatio / count($recoverySanctionVolumeData), 2) }}%
No Records Found

Recovery 360º Branch wise {{$filterShow}}

@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 @endforeach @else @endif
Branch Due Cases Closed Cases Pending Cases Ratio %
{{ getUserNameById('lms_cities','cityID',$data->branch,'cityName') }} {{ number_format($data->DueCases) }} {{ number_format($data->ClosedCases) }} {{ number_format($data->PendingCases) }} {{ number_format($data->Ratio, 2) }}%
Total {{ number_format($totalDueCases) }} {{ number_format($totalClosedCases) }} {{ number_format($totalPendingCases) }} {{ number_format($totalRatio / count($recoverySanctionVolumeData), 2) }}%
No Records Found
@endsection @section('custom-js') @endsection