@extends('app') @section('content')
Contest Archive

أرشيف المسابقات المنتهية

كل مسابقة في بطاقة مستقلة. افتح البطاقة لتشاهد نتيجتك، عدد الإجابات الصحيحة والخاطئة، وتفاصيل كل سؤال.

{{ $contests->count() }} مسابقات
@forelse($contests as $contest)
first ? 'open' : '' }}>
{{ $contest['emoji'] }}
{{ $contest['title'] }} {{ $contest['ended_at'] }}

{{ $contest['title'] }}

{{ $contest['ended_at'] }} {{ $contest['total_questions'] }} سؤال @if($contest['has_attempt']) {{ $contest['correct_count'] }} صحيح @endif
@if($contest['has_attempt'])
{{ $contest['score_percent'] ?? 0 }}% {{ $contest['score'] }} / {{ $contest['total_score'] }}
@else
لم تشارك
@endif
عرض التفاصيل
@if($contest['has_attempt'])
الإجابات الصحيحة {{ $contest['correct_count'] }}
الإجابات الخاطئة {{ $contest['total_questions'] - $contest['correct_count'] }}
النتيجة الكاملة فتح صفحة النتيجة
@foreach($contest['questions'] as $index => $question)
{{ $index + 1 }}

{{ $question['text'] }}

{{ $question['is_correct'] ? 'إجابة صحيحة' : 'إجابة خاطئة' }}
إجابتك {{ $question['selected_answer'] ?: 'لم يتم اختيار إجابة' }}
الإجابة الصحيحة {{ $question['correct_answer'] ?: 'غير محددة' }}
@endforeach
@else

هذه المسابقة انتهت، لكن لا يوجد لك مشاركة مسجلة فيها.

@endif
@empty

لا توجد مسابقات منتهية حالياً

عندما تنتهي المسابقات ستظهر هنا مع النتائج والإجابات.

@endforelse
@if(method_exists($contests, 'links'))
{{ $contests->links() }}
@endif @endsection