@extends($layout) @section('title', 'إحصائيات الإنذارات') @section('content')
{{-- Header --}}

إحصائيات الإنذارات

تحليل النقاط المخصومة بسبب الإنذارات

{{-- Date Filter --}}
{{-- Stats Cards --}}
@include('general.score-records.partials._stats-card', [ 'title' => 'إجمالي الإنذارات', 'value' => number_format($stats['total_warnings']), 'icon' => '', 'iconBg' => 'bg-orange-50' ]) @include('general.score-records.partials._stats-card', [ 'title' => 'النقاط المخصومة', 'value' => '-' . number_format($stats['total_points_deducted']), 'valueColor' => 'text-orange-600', 'icon' => '', 'iconBg' => 'bg-orange-50' ]) @include('general.score-records.partials._stats-card', [ 'title' => 'متوسط الخصم', 'value' => $stats['total_warnings'] > 0 ? number_format($stats['total_points_deducted'] / $stats['total_warnings'], 1) . ' نقطة' : '0 نقطة', 'valueColor' => 'text-yellow-600', 'subtitle' => 'لكل إنذار', 'icon' => '', 'iconBg' => 'bg-yellow-50' ])
{{-- Warning Box --}}

ملاحظة حول الإنذارات

الإنذارات هي تحذيرات رسمية تُعطى للأعضاء عند تكرار السلوكيات غير المقبولة أو المخالفات البسيطة. تُخصم نقاط عند كل إنذار، وتراكم الإنذارات قد يؤدي إلى عقوبات أشد. نشجع الأعضاء على الالتزام بالقواعد والاستفادة من التوجيه الإيجابي لتجنب الإنذارات.

@endsection