@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 ? 'إنشاء وإدارة الاختبارات المتقدمة.' : 'Create and manage advanced exams.' }}
| pluck('id')) }} : []" class="h-4 w-4 rounded border-surface-300 text-surface-900 dark:border-surface-600"> | {{ $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')
@else
@endif
|