A {{ $visitor->type === 'InterUnitStaff' ? 'Employee' : 'Visitor' }} has arrived and is waiting to meet you.
Please find the details below:
{{-- |
Visitor Name
| --}}
{{ $visitor->type === 'InterUnitStaff' ? 'Employee Name' : 'Visitor Name' }}
|
{{ $visitor->name }}
|
|
Mobile Number
|
{{ $visitor->mobile_number }}
|
|
{{ $visitor->type === 'InterUnitStaff' ? 'Unit' : 'Company' }}
|
{{ $visitor->company }}
|
|
Purpose of Visit
|
{{ $visitor->purpose_of_visit }}
|
|
No of Person
|
{{ $visitor->number_of_person }}
|
|
Visit Time
|
{{ $visitor->created_at?->format('d-m-Y h:i A') }}
|