@extends('layout.mainlayout') @section('content')
| # | Employee | Type | Passport No | Passport Validity | Visa Status | Visa Expiry | Country | Actions | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $row->name }} | {{ $row->email }} | {{ $row->resource_type }} | {{ $row->passport_no ?? '—' }} | {{ $row->passport_validity ? \Carbon\Carbon::parse($row->passport_validity)->format('d M Y') : '—' }} | {{ $row->visa_status ?? '—' }} | {{ $row->visa_expiry_date ? \Carbon\Carbon::parse($row->visa_expiry_date)->format('d M Y') : '—' }} | {{ $row->visa_country_name ?? '—' }} | @can('passport-visa-manage') Edit @endcan |