@include('layouts.header')

Employement & Dependant Pass

Employment Pass
@foreach($currentUserEmploymentPasses as $index => $currentUserEmploymentPass) @endforeach
Sl. No. Visa Type Visa No Date of Issue Date of Expiry Action
{{@$index+1}} {{@$currentUserEmploymentPass->visaType->type}} {{@$currentUserEmploymentPass->visa_number}} {{@($currentUserEmploymentPass->date_of_issue)?date('d M, Y', strtotime($currentUserEmploymentPass->date_of_issue)):'N/A'}} {{@($currentUserEmploymentPass->date_of_expiry)?date('d M, Y', strtotime($currentUserEmploymentPass->date_of_expiry)):'N/A'}}
Visa Copy

@if(@$currentUserEmploymentPass->visa_attachment_path)
@else

No file Found

@endif
Receipt Copy

@if(@$currentUserEmploymentPass->receipt_attachment_path)
@else

No file Found

@endif
Family Details
@foreach($currentUserFamilyPasses as $index => $currentUserFamilyPass) @endforeach
Sl. No. Name Passport No Relationship Visa Expiry Date Passport Expiry Date Action
{{@$index+1}} {{@$currentUserFamilyPass->name}} {{@$currentUserFamilyPass->passport_number}} {{@$currentUserFamilyPass->relation->relation}} {{@($currentUserFamilyPass->visa_expiry_date)?date('d M, Y', strtotime($currentUserFamilyPass->visa_expiry_date)):'N/A'}} {{@($currentUserFamilyPass->passport_expiry_date)?date('d M, Y', strtotime($currentUserFamilyPass->passport_expiry_date)):'N/A'}}
Document Copy

@if(@$currentUserFamilyPass->document_attachment_path)
@else

No file Found

@endif
Receipt Copy

@if(@$currentUserFamilyPass->receipt_attachment_path)
@else

No file Found

@endif
@include('layouts.footer')