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

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

تحليل شامل لنقاط البونص من القيستات

{{-- Date Filter --}}
{{-- Stats Cards --}}
@include('general.score-records.partials._stats-card', [ 'title' => 'إجمالي القيستات', 'value' => number_format($stats['total_guests']), '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' => number_format($stats['total_hours'], 1) . ' ساعة', 'valueColor' => 'text-purple-600', 'icon' => '', 'iconBg' => 'bg-purple-50' ]) @include('general.score-records.partials._stats-card', [ 'title' => 'متوسط النقاط', 'value' => number_format($stats['average_points'], 1), 'valueColor' => 'text-orange-600', 'subtitle' => 'لكل قيست', 'icon' => '', 'iconBg' => 'bg-orange-50' ])
{{-- Info Box --}}

ملاحظة حول القيستات

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

@endsection