@extends($layout) @section('title', 'إحصائيات المسابقات') @section('content')
{{-- Header --}}

إحصائيات المسابقات

تحليل شامل للنقاط المكتسبة من المشاركات في المسابقات

{{-- Date Filter --}}
{{-- Stats Cards --}}
@include('general.score-records.partials._stats-card', [ 'title' => 'إجمالي المشاركات', 'value' => number_format($stats['total_participations']), 'icon' => '', 'iconBg' => 'bg-blue-50' ]) @include('general.score-records.partials._stats-card', [ 'title' => 'إجمالي النقاط', 'value' => '+' . number_format($stats['total_points']), 'valueColor' => 'text-green-600', 'icon' => '', 'iconBg' => 'bg-green-50' ]) @include('general.score-records.partials._stats-card', [ 'title' => 'متوسط النقاط', 'value' => $stats['total_participations'] > 0 ? number_format($stats['total_points'] / $stats['total_participations'], 1) : '0', 'valueColor' => 'text-purple-600', 'subtitle' => 'لكل مشاركة', 'icon' => '', 'iconBg' => 'bg-purple-50' ])
{{-- Info Box --}}

المسابقات وأهميتها

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

@endsection