Employee No: {{ $employee->employee_no }}
Email: {{ $employee->email }}
Phone: {{ $employee->phone ?? '-' }}
Position: {{ $employee->position ?? '-' }}
Department: {{ $employee->department ?? '-' }}
Hired At: {{ optional($employee->hired_at)->toFormattedDateString() ?? '-' }}
Salary: {{ $employee->salary ? 'RM ' . number_format($employee->salary,2) : '-' }}