@extends('layouts.app') @section('title', 'الامتحانات') @section('content')
{{-- Breadcrumb + Header --}}

إدارة الامتحانات

تصدير CSV
{{-- Hero Stats --}}
{{-- Toolbar: Search + Filters --}}
{{-- Tabs: الكل + حسب المقرر --}} {{-- Table --}}
@php $flip = $direction === 'asc' ? 'desc' : 'asc'; $qs = request()->except('page'); @endphp @forelse($exams as $exam) @empty @endforelse
# العنوان {!! $sort === 'title' ? ($direction === 'asc' ? '↑' : '↓') : '' !!} المقرر المدة {!! $sort === 'duration' ? ($direction === 'asc' ? '↑' : '↓') : '' !!} تاريخ الإنشاء {!! $sort === 'created_at' ? ($direction === 'asc' ? '↑' : '↓') : '' !!} عدد الأسئلة إجراءات
{{ $exam->id }} {{ $exam->title }} {{ $exam->course->name ?? '—' }} {{ $exam->duration }} {{ optional($exam->created_at)->format('Y-m-d') }} {{ $exam->questions_count }}
لا توجد بيانات بعد
{{-- Pagination --}}
{{ $exams->links() }}
{{-- Offcanvas Filters --}}
فلاتر متقدمة
تفريغ
{{-- Toasts --}}
{{-- Modals --}} @include('dashboard.exams.modals.create', ['courses' => $courses]) @include('dashboard.exams.modals.edit', ['courses' => $courses]) @include('dashboard.exams.modals.show') @include('dashboard.exams.modals.delete') @endsection @push('scripts') @endpush