{{ ucfirst($employee->salutation) . ' ' . mb_ucwords($employee->name) }}
@isset($employee->country)
@endisset
{{ !is_null($employee->employeeDetail) && !is_null($employee->employeeDetail->designation) ? mb_ucwords($employee->employeeDetail->designation->name) : '' }}
•
{{ isset($employee->employeeDetail) && !is_null($employee->employeeDetail->department) && !is_null($employee->employeeDetail->department) ? mb_ucwords($employee->employeeDetail->department->team_name) : '' }}
@if ($employee->status == 'active')
@lang('app.lastLogin')
@if (!is_null($employee->last_login))
{{ $employee->last_login->timezone(company()->timezone)->format(company()->date_format . ' ' . company()->time_format) }}
@else
--
@endif
@else
@endif