نظام إدارة الموارد البشرية نواتِك

طباعة سجل الحضور

معلومات الموظف:

الاسم: {{ $employee->name }}
رقم الموظف: {{ $employee->employee_id }}
الوظيفة: {{ $employee->position?->name ?? 'غير محدد' }}
القسم: {{ $employee->department?->name ?? 'غير محدد' }}
تاريخ التعيين: {{ $employee->hire_date?->format('Y-m-d') ?? 'غير محدد' }}

سجل الحضور

@if($attendances && count($attendances) > 0) @foreach($attendances as $attendance) @endforeach
التاريخ وقت الحضور وقت الانصراف مدة العمل الحالة ملاحظات
{{ $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 ?? '-' }}
@else

لا توجد سجلات حضور لهذا الموظف.

@endif
عودة إلى الملف
عودة إلى الملف