@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'الاختبارات V2' : 'Exams V2') @section('skip_page_hero', true) @section('content') @php $isArabic = app()->getLocale() === 'ar'; @endphp

{{ $isArabic ? 'الاختبارات V2' : 'Exams V2' }}

{{ $isArabic ? 'إنشاء وإدارة الاختبارات المتقدمة.' : 'Create and manage advanced exams.' }}

@if($exams->isEmpty())
{{ $isArabic ? 'لا توجد اختبارات بعد.' : 'No exams yet.' }}
@else @foreach($exams as $exam) @endforeach
{{ $isArabic ? 'الاختبار' : 'Exam' }} {{ $isArabic ? 'المقرر' : 'Course' }} {{ $isArabic ? 'الأقسام' : 'Sections' }} {{ $isArabic ? 'الحالة' : 'Status' }} {{ $isArabic ? 'المدة' : 'Duration' }}

{{ $exam->title }}

{{ $exam->owner?->name }}

{{ $exam->course?->name ?? '—' }} {{ $exam->sections_count }} @if($exam->status === 'published') {{ $isArabic ? 'منشور' : 'Published' }} @else {{ $isArabic ? 'مسودة' : 'Draft' }} @endif {{ $exam->duration_minutes ? $exam->duration_minutes.' '.($isArabic ? 'د' : 'min') : '—' }}
{{ $isArabic ? 'تعديل' : 'Edit' }} @if($exam->status === 'draft')
@csrf
@else
@csrf
@endif
@csrf @method('DELETE')
{{ $exams->links() }}
@endif
@endsection