UNALLOCATED REPORT
| SNO |
NAME |
ZONE |
@foreach($Unall_Rep_List as $index => $Unall_Rep_Lists)
| {{ $index + 1 }} |
{{ $Unall_Rep_Lists['Name'] }} |
@php
// Define all values that mean "not allocated"
$invalidZones = ['A', 'B', 'C', 'D', 'E', 'F', 'A4'];
@endphp
@if(in_array($Unall_Rep_Lists['Zone'], $invalidZones))
Zone not Allocated
@else
{{ $Unall_Rep_Lists['Zone'] }}
@endif
|
@endforeach
ALL REPORT
| SNO |
NAME |
MONTH |
DIVISION |
TEAM |
ZONE |
AVERAGE MARK |
KPI AVERAGE MARK |
@foreach($Rep_List as $index => $Rep_Lists)
| {{ $index + 1 }} |
{{ $Rep_Lists['Name'] }} / {{ $Rep_Lists['tno'] }} |
{{ $Rep_Lists['Month_Year'] }} |
{{ $Rep_Lists['Division'] }} |
{{ $Rep_Lists['Team'] }} |
{{ $Rep_Lists['Zone'] }} |
{{ $Rep_Lists['Average'] }} |
{{ $Rep_Lists['Kpi_Pt'] }} |
@endforeach