{{ $user->email }} - الإدارة العليا
المراجع: {{ auth()->user()->name }} - الإدارة العليا
اسم المستخدم: {{ $user->name }}
البريد الإلكتروني: {{ $user->email }}
@php $userRole = $user->roles->first(); $roleNames = [ 'moderator' => 'مشرف', 'official-member' => 'عضو رسمي', 'member' => 'عضو بيتا' ]; @endphp @if($userRole)الدور: {{ $roleNames[$userRole->name] ?? $userRole->name }}
@endifتاريخ التقرير: {{ now()->format('Y/m/d H:i') }}
@if(request('from') || request('to'))فترة التقرير: @if(request('from') && request('to')) من {{ request('from') }} إلى {{ request('to') }} @elseif(request('from')) من {{ request('from') }} @elseif(request('to')) حتى {{ request('to') }} @endif
@endif| # | التاريخ | اليوم | حالة الحضور | النقاط | ملاحظات |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ \Carbon\Carbon::parse($evaluation->evaluation_date)->format('Y/m/d') }} | {{ \Carbon\Carbon::parse($evaluation->evaluation_date)->locale('ar')->dayName }} | @if($evaluation->attendance_status == 'present') حاضر @elseif($evaluation->attendance_status == 'absent_with_excuse') غائب بعذر @else غائب بدون عذر @endif | {{ $evaluation->total_daily_points > 0 ? '+' : '' }}{{ $evaluation->total_daily_points ?? 0 }} | {{ $evaluation->evaluator_notes ?? '-' }} |
| النقاط الكلية | {{ $attendanceStats['total_points'] }} | - | |||
لم يتم تسجيل أي حضور أو غياب للمستخدم في الفترة المحددة