{{ __('Absence Details') }}

{{ __('Back') }}
{{ __('Employee') }}:
{{ $absence->employee->name ?? '—' }}
{{ __('Date') }}:
{{ optional($absence->date)->format('Y-m-d') }}
{{ __('Type') }}:
{{ __(ucfirst(str_replace('_',' ',$absence->type))) }}
{{ __('Hours') }}:
{{ $absence->hours ?? '—' }}
{{ __('Reason') }}:
{{ $absence->reason ?? '—' }}
{{ __('Status') }}: {{ __(ucfirst($absence->status)) }}
{{ __('File') }}: @if($absence->file_url) {{ __('View File') }} @else @endif
{{ __('Note') }}:
{{ $absence->note ?? '—' }}