| الاسم: | {{ $employee->name }} |
|---|---|
| رقم الموظف: | {{ $employee->employee_id }} |
| الوظيفة: | {{ $employee->position?->name ?? 'غير محدد' }} |
| القسم: | {{ $employee->department?->name ?? 'غير محدد' }} |
| تاريخ التعيين: | {{ $employee->hire_date?->format('Y-m-d') ?? 'غير محدد' }} |
| التاريخ | وقت الحضور | وقت الانصراف | مدة العمل | الحالة | ملاحظات |
|---|---|---|---|---|---|
| {{ $attendance->date->format('Y-m-d') }} | {{ $attendance->check_in ?? 'لم يسجل' }} | {{ $attendance->check_out ?? 'لم يسجل' }} | {{ $attendance->work_duration ?? 'غير محسوبة' }} | @switch($attendance->status) @case('present') حاضر @break @case('late') متأخر @break @case('absent') غائب @break @case('leave') إجازة @break @default {{ $attendance->status }} @endswitch | {{ $attendance->notes ?? '-' }} |
لا توجد سجلات حضور لهذا الموظف.
@endif