فريق الوفاء الذهبي
تقرير تقييمات الأداء الشامل
{{ number_format($userStats['total_evaluations']) }}
إجمالي التقييمات
{{ number_format($userStats['total_points']) }}
إجمالي النقاط
{{ number_format($userStats['present_days']) }}
أيام الحضور
{{ number_format($userStats['excused_absences']) }}
غياب بعذر
{{ number_format($userStats['unexcused_absences']) }}
غياب بدون عذر
{{ number_format($userStats['total_warnings']) }}
الإنذارات
{{ number_format($userStats['approved_evaluations']) }}
معتمدة
{{ number_format($userStats['pending_evaluations']) }}
قيد المراجعة

ملخص الأداء

@php $totalDays = $userStats['total_evaluations']; $presentPercent = $totalDays > 0 ? round(($userStats['present_days'] / $totalDays) * 100, 1) : 0; $avgPoints = $totalDays > 0 ? round($userStats['total_points'] / $totalDays, 1) : 0; $performanceScore = ($presentPercent * 0.6) + (($avgPoints/4) * 100 * 0.4); @endphp

{{ $presentPercent }}%

معدل الحضور

{{ $avgPoints }}/4

متوسط النقاط اليومية

{{ round($performanceScore, 1) }}%

درجة الأداء الإجمالية

@if($performanceScore >= 90) ممتاز @elseif($performanceScore >= 80) جيد جداً @elseif($performanceScore >= 70) جيد @elseif($performanceScore >= 60) مقبول @else يحتاج تحسين @endif

التقييم العام

مؤشرات الأداء المرئية

معدل الحضور
{{ $presentPercent }}%
متوسط النقاط
{{ $avgPoints }}/4
مستوى الإنذارات
{{ $userStats['total_warnings'] }}/10

سجل التقييمات التفصيلي

@if($evaluations->count() > 0) @foreach($evaluations as $evaluation) @endforeach
التاريخ المقيم واتساب تيكتوك حالة الحضور الإنذارات النقاط الحالة
{{ $evaluation->evaluation_date->format('Y/m/d') }} {{ $evaluation->evaluator->name }} {{ $evaluation->whatsapp_presence }} {{ $evaluation->tiktok_interaction }} @if($evaluation->attendance_status == 'present') حاضر @elseif($evaluation->attendance_status == 'absent_with_excuse') غائب بعذر @else غائب بدون عذر @endif {{ $evaluation->warnings_count }} {{ $evaluation->total_daily_points > 0 ? '+' : '' }}{{ $evaluation->total_daily_points }} @if($evaluation->status == 'approved') معتمد @else قيد المراجعة @endif
@else

لا توجد تقييمات في الفترة المحددة

@endif

تم إنشاء هذا التقرير بواسطة نظام إدارة فريق الوفاء الذهبي

تاريخ الإنشاء: {{ now()->format('Y/m/d H:i') }}