Employee ID:
{{ $employee->employee_id }}
Current Status:
@if($employee->status === 'active')
Active
@elseif($employee->status === 'inactive')
Inactive
@else
Terminated
@endif
Tenure:
{{ $employee->hire_date->diffForHumans() }}
Department:
{{ $employee->department }}
Position:
{{ $employee->position }}