إدارة الأنشطة اللاصفية ⚽🎭

قائمة الأنشطة

إدارة وتتبع الأنشطة الرياضية، الثقافية، والفنية

سجل الإنجازات @can('create-activities') نشاط جديد @endcan
@if(session('success'))
{{ session('success') }}
@endif
@forelse($activities as $activity) @php $typeColors = [ 'رياضي' => ['bg' => 'blue', 'icon' => '⚽'], 'ثقافي' => ['bg' => 'purple', 'icon' => '📖'], 'فني' => ['bg' => 'emerald', 'icon' => '🎨'], 'كشفي' => ['bg' => 'amber', 'icon' => '⛺'], 'أخرى' => ['bg' => 'indigo', 'icon' => '🌟'], ]; $color = $typeColors[$activity->type] ?? $typeColors['أخرى']; @endphp
{{ $color['icon'] }}
{{ $activity->status === 'active' ? 'مستمر' : 'مؤرشف' }}

{{ $activity->name }}

{{ $activity->description ?? 'لا يوجد وصف متاح' }}

النوع {{ $activity->type }}
الطلاب {{ $activity->students_count }} مشارك
@if($activity->coach)
{{ mb_substr($activity->coach->full_name, 0, 1) }}
المدرب {{ $activity->coach->full_name }}
@else بدون مدرب معين @endif
{{ $activity->grade->name ?? 'جميع الصفوف' }}
@if(auth()->user()->role === 'student' && auth()->user()->student)
@php $isEnrolled = $activity->students->contains(auth()->user()->student->id); @endphp @if($isEnrolled)
تم الاشتراك عرض التفاصيل
@else
@csrf
@endif
@endif
@can('edit-activities') @endcan @can('delete-activities')
@csrf @method('DELETE')
@endcan
@empty

لا توجد أنشطة حالياً

ابدأ بإضافة أول نشاط مدرسي (فصل صيفي، دوري كرة قدم، أو مسابقة ثقافية).

إضافة نشاط الآن
@endforelse