@extends('layouts.admin_lbb') @section('page-title', 'Kelola Peserta Ujian') @section('content')
{{ $exam->description ?? 'Tanpa deskripsi' }}
| Nama Siswa | Kelas | Tanggal Terdaftar | Status Pengerjaan | Aksi | |
|---|---|---|---|---|---|
|
{{ $participant->student->user->name }}
{{ $participant->student->user->email }}
|
{{ $participant->student->classModel->name }} | {{ $participant->registered_at->format('d M Y, H:i') }} | @if($participant->examAttempts()->exists()) Sudah Mengerjakan @if($participant->examAttempts->count() > 1) {{ $participant->examAttempts->count() }}× Attempt @endif @else Belum Mengerjakan @endif |
| Nama Siswa | Kelas | Status | ||
|---|---|---|---|---|
|
{{ $student->user->name }}
{{ $student->user->phone }}
|
{{ $student->classModel->name }} | {{ $student->user->email }} | @if($student->status->value === 'active') Aktif @else Nonaktif @endif |