Employee No.
{{ $employee->employee_no ?: $employee->employee_id }}
Duration of Service
{{ $employee->hire_date->diffForHumans(null, true) }}
Date of Retirement / End of Contract
{{ $employee->date_of_retirement_end_contract ? $employee->date_of_retirement_end_contract->format('Y-m-d') : 'Not applicable' }}
Work Permit Expiry Date
{{ $employee->work_permit_expiry_date ? $employee->work_permit_expiry_date->format('Y-m-d') : '-' }}
Pay Group
{{ $employee->pay_group ?: '-' }}
Join Date
{{ $employee->join_date ? $employee->join_date->format('Y-m-d') : ($employee->hire_date ? $employee->hire_date->format('Y-m-d') : '-') }}
Location
{{ $employee->location ?: '-' }}
Cost Center
{{ $employee->cost_center ?: '-' }}
Work Permit No.
{{ $employee->work_permit_no ?: '-' }}
Employment Status
{{ $employee->status ? ucfirst($employee->status) : 'Active' }} {{ $employee->employment_type ? '- ' . ucwords(str_replace('_', ' ', $employee->employment_type)) : '' }}
Employment Type
{{ $employee->employment_type ? ucwords(str_replace('_', ' ', $employee->employment_type)) : '-' }}
Overtime (OT) Entitlement
@if($employee->not_entitled_to_ot)
Not Entitled to OT
@else
Entitled to OT
@endif
Position
{{ $employee->position ?: '-' }}
Returning Expert Program
{{ $employee->returning_expert_program ? 'Yes' : 'No' }}
Reports To
{{ $employee->reports_to ? 'Manager Name' : '-' }}
Functional Group
{{ $employee->functional_group ?: '-' }}
Subsidiary
{{ $employee->subsidiary ?: '-' }}
Employment Status Effective From
{{ $employee->employment_status_effective_from ? $employee->employment_status_effective_from->format('Y-m-d') : '-' }}
Employment Status Effective To
{{ $employee->employment_status_effective_to ? $employee->employment_status_effective_to->format('Y-m-d') : '-' }}
Position Level
{{ $employee->position_level ?: '-' }}
Department
{{ $employee->department ?: '-' }}
Knowledge Worker (at Specified Region)
{{ $employee->knowledge_worker_specified_region ? 'Yes' : 'No' }}
Notice Period (days)
{{ $employee->notice_period_days ?: '-' }}