@php
$hr_department_ids = \App\Models\SmHumanDepartment::where('name', 'like', '%hr%')
->pluck('id')
->toArray();
@endphp
@if (isHumanResource())
@else
{{ auth()->user()?->staff?->staff_no }} -
{{ auth()->user()?->full_name ?? (auth()->user()?->staff?->first_name . ' ' . auth()->user()?->staff?->last_name) }}
@endif