{{ __('Region Wise Pending Status') }}
| {{ __('Region') }} |
{{ __('Target') }} |
{{ __('Assigned') }} |
{{ __('Cancelled') }} |
{{ __('Published') }} |
{{ __('Approved') }} |
{{ __('MEO/SMEO') }} |
{{ __('RD') }} |
{{ __('SDM') }} |
{{ __('D.G') }} |
{{ __('Pending') }} |
{{ __('SAT') }} |
{{ __('SAT%') }} |
{{ __('UNSAT') }} |
{{ __('UNSAT%') }} |
@forelse ($summary['regions'] as $row)
| {{ $row['region'] }} |
|
{{ $row['assigned'] }} |
{{ $row['cancelled'] ?? 0 }} |
{{ $row['published'] }} |
{{ $row['approved'] ?? 0 }} |
{{ $row['meo'] }} |
{{ $row['rd'] }} |
{{ $row['sdm'] }} |
{{ $row['dg'] }} |
{{ $row['pending'] }} |
{{ $row['sat'] }} |
{{ $row['sat_pct'] }}% |
{{ $row['unsat'] }} |
{{ $row['unsat_pct'] }}% |
@empty
@endforelse
@if (count($summary['regions']) > 0)
| {{ __('Total') }} |
|
{{ $summary['totals']['assigned'] }} |
{{ $summary['totals']['cancelled'] ?? 0 }} |
{{ $summary['totals']['published'] }} |
{{ $summary['totals']['approved'] ?? 0 }} |
{{ $summary['totals']['meo'] }} |
{{ $summary['totals']['rd'] }} |
{{ $summary['totals']['sdm'] }} |
{{ $summary['totals']['dg'] }} |
{{ $summary['totals']['pending'] }} |
{{ $summary['totals']['sat'] }} |
{{ $summary['totals']['sat_pct'] }}% |
{{ $summary['totals']['unsat'] }} |
{{ $summary['totals']['unsat_pct'] }}% |
@endif
{{ __('MEO Wise Performance Review') }}
| {{ __('Monitoring Officer') }} |
{{ __('Assigned') }} |
{{ __('Cancelled') }} |
{{ __('Published') }} |
{{ __('Approved') }} |
{{ __('MEO/SMEO') }} |
{{ __('RD') }} |
{{ __('SDM') }} |
{{ __('D.G') }} |
{{ __('Pending') }} |
{{ __('SAT') }} |
{{ __('SAT%') }} |
{{ __('UNSAT') }} |
{{ __('UNSAT%') }} |
@forelse ($officerRows as $row)
| {{ $row['officer'] }} |
{{ $row['assigned'] }} |
{{ $row['cancelled'] ?? 0 }} |
{{ $row['published'] }} |
{{ $row['approved'] ?? 0 }} |
{{ $row['meo'] }} |
{{ $row['rd'] }} |
{{ $row['sdm'] }} |
{{ $row['dg'] }} |
{{ $row['pending'] }} |
{{ $row['sat'] }} |
{{ $row['sat_pct'] }}% |
{{ $row['unsat'] }} |
{{ $row['unsat_pct'] }}% |
@empty
@endforelse
@if (count($summary['officers']) > 0 && is_array($officerTotals))
| {{ __('Total') }} |
{{ $officerTotals['assigned'] }} |
{{ $officerTotals['cancelled'] ?? 0 }} |
{{ $officerTotals['published'] }} |
{{ $officerTotals['approved'] ?? 0 }} |
{{ $officerTotals['meo'] }} |
{{ $officerTotals['rd'] }} |
{{ $officerTotals['sdm'] }} |
{{ $officerTotals['dg'] }} |
{{ $officerTotals['pending'] }} |
{{ $officerTotals['sat'] }} |
{{ $officerTotals['sat_pct'] }}% |
{{ $officerTotals['unsat'] }} |
{{ $officerTotals['unsat_pct'] }}% |
@endif
@include('partials.listing-pagination', [
'paginator' => $officerPaginator,
'perPage' => $perPage ?? 25,
'baseUrl' => route('reports.report-for-sims.index'),
])