Back
@if($staff_details['barcode'])
Barcode
{{$staff_details['barcode']}}
@endif
{{$staff_details['verificationStatus']}}
Mark As
Submit
Prev
Next
@if($staff_details['applicationId'])
Application ID:
{{$staff_details['applicationId']}}
@endif
{{ strtoupper($staff_details['firstName']) }} {{ strtoupper($staff_details['middleName']) }} {{ strtoupper($staff_details['lastName']) }}
{{strtoupper($staff_details['designationDetails'])}}
{{strtoupper($staff_details['vendorName'])}}
@php // Get@php // Get access areas from staff details $accessAreas = $staff_details['vendorAccessAreaList'] ?? []; // Filter only selected access areas $selectedAreas = collect($accessAreas) ->filter(fn($area) => $area['isSelectedByStaff']) ->values(); // Extract selected access area codes $codes = $selectedAreas->pluck('accessAreaCode')->filter(fn($code) => is_numeric($code))->map(fn($c) => (int)$c)->toArray(); // Fill 6 boxes with either selected code or '#' for unselected $finalBoxes = []; for ($i = 1; $i <= 6; $i++) { $finalBoxes[] = in_array($i, $codes) ? $i : '#'; } @endphp
@for ($row = 0; $row < 2; $row++)
@for ($col = 0; $col < 3; $col++) @php $index = $row * 3 + $col; @endphp
{{ $finalBoxes[$index] }}
@endfor
@endfor
Personal Details :
Father's Name:
{{$staff_details['fatherName']}}
Gender:
{{$staff_details['gender']}}
Date of Birth:
{{$staff_details['dob']}}
Address:
{{$staff_details['addressLine1']}}
Address Line 2:
{{$staff_details['addressLine2']}}
Country:
{{$staff_details['country']}}
State:
{{$staff_details['state']}}
City:
{{$staff_details['city']}}
Pincode:
{{$staff_details['postalCode']}}
Accreditation Details :
Designation:
{{$staff_details['designationDetails']}}
Only Concourse Access:
{{ $staff_details['onlyConcourseAccess'] ? 'Yes' : 'No' }}
@if($staff_details['onlyConcourseAccess'] == false)
Access Areas:
{{$staff_details['accessAreas'] }}
@endif
ID Proof Front
ID Proof Back
100%
Id Proof Back Details
Id Type: {{$staff_details['idType']}}
Id Number: {{$staff_details['idNumber']}}
100%
Id Proof Back Details
Id Type: {{$staff_details['idType']}}
Id Number: {{$staff_details['idNumber']}}