| {{ __('full_name') }} | {{ $employee->name }} |
|---|---|
| {{ __('email') }} | {{ $employee->email }} |
| {{ __('mobile') }} | {{ $employee->mobile }} |
| {{ __('department') }} | {{ $employee->department->name ?? '-' }} |
| {{ __('position') }} | {{ $employee->position->name ?? '-' }} |
| {{ __('status') }} | {{ ucfirst($employee->status) }} |
{{ __('no_documents_found') }}
@else| {{ __('label') }} | {{ __('department') }} | {{ __('file') }} | {{ __('uploaded_at') }} |
|---|---|---|---|
| {{ $doc->label }} | {{ $doc->department->name ?? '-' }} | {{ __('view') }} | {{ $doc->created_at->format('Y-m-d') }} |
{{ __('no_leaves_found') }}
@else| {{ __('duration') }} | {{ __('start_date') }} | {{ __('end_date') }} | {{ __('return_date') }} | {{ __('within_balance') }} |
|---|---|---|---|---|
| {{ $leave->duration }} | {{ $leave->start_date }} | {{ $leave->end_date }} | {{ $leave->resume_date }} | {{ $leave->within_balance ? __('yes') : __('no') }} |
{{ __('no_violations_found') }}
@else| {{ __('reason') }} | {{ __('date') }} | {{ __('penalty') }} |
|---|---|---|
| {{ $violation->reason }} | {{ $violation->violation_date }} | {{ $violation->penalty }} |
{{ __('no_custodies_found') }}
@else| {{ __('name') }} | {{ __('status') }} | {{ __('delivery') }} | {{ __('return') }} |
|---|---|---|---|
| {{ $custody->name }} | {{ ucfirst($custody->status) }} | @if($custody->delivery_attachment) {{ __('view') }} @else - @endif | @if($custody->return_attachment) {{ __('view') }} @else - @endif |
{{ __('hire_date') }}: {{ $employee->start_date }}
{{ __('months_worked') }}: {{ $monthsWorked }}
{{ __('years_worked') }}: {{ $yearsWorked }}
{{ __('total_entitlement') }}: {{ $totalEntitlement }} {{ __('days') }}
{{ __('used_days') }}: {{ $usedDays }} {{ __('days') }}
{{ __('remaining') }}: {{ $remaining }} {{ __('days') }}
| نوع الإجازة | التكرار | المستحق | المستخدم | المتبقي |
|---|---|---|---|---|
| {{ $row['name'] }} | {{ $row['frequency'] }} | {{ $row['total_entitlement'] }} | {{ $row['used_days'] }} | {{ $row['remaining'] }} |