@extends('layouts.admin') @section('title', 'Sesi Ujian') @section('content')

Sesi Ujian

Tambah Sesi
@if (session('success'))
{{ session('success') }}
@endif
{{-- HEADER --}}
Daftar Sesi Ujian
{{-- BODY --}}
@forelse($examSessions as $session) {{-- NAMA --}} {{-- DURASI --}} {{-- PASSING SCORE --}} {{-- STATUS --}} {{-- CREATED --}} {{-- ACTION --}} @empty @endforelse
Nama Sesi Durasi Passing Score Status Dibuat Action
{{ $session->name }}
@if($session->description) {{ Str::limit($session->description, 80) }} @endif
{{ $session->duration }} Menit {{ $session->passing_score }}% @if($session->is_active) Aktif @else Nonaktif @endif {{ $session->created_at->format('d M Y') }}
{{-- DETAIL --}} {{-- KATEGORI --}} {{-- EDIT --}} {{-- DELETE --}}
@csrf @method('DELETE')

Belum ada sesi ujian.

{{-- PAGINATION --}} @if($examSessions->hasPages()) @endif
@endsection