Employee #{{ $employee->employee_number }}
Department{{ $employee->department?->name ?? '—' }}
Job Title{{ $employee->job_title ?? '—' }}
Employment Type{{ $employee->employment_type ? ucfirst(str_replace('_',' ',$employee->employment_type)) : '—' }}
Employment Date{{ $employee->employment_date?->format('M j, Y') ?? '—' }}
Email{{ $employee->email ?? '—' }}
Phone{{ $employee->phone ?? '—' }}
Supervisor{{ $employee->supervisor?->full_name ?? '—' }}
Salary{{ $employee->salary ? number_format($employee->salary, 2) : '—' }}
@if($employee->address)
Address{{ $employee->address }}
@endif
@if($employee->emergency_contact)
Emergency Contact{{ $employee->emergency_contact }}
@endif