@extends('layouts.app') @section('title', 'Detail Ujian') @section('content')

Detail Ujian

Judul: {{ $exam->title }}
Mata Kuliah: {{ $exam->course->name }}
Mulai: {{ $exam->start_time->format('d M Y H:i') }} WITA
Selesai: {{ $exam->end_time->format('d M Y H:i') }} WITA
Durasi: {{ $exam->duration }} menit
Status: {{ $exam->status }}

Soal ({{ $exam->questions->count() }})

@foreach($exam->questions as $q)

{{ $loop->iteration }}. {{ $q->question }}

Tipe: {{ str_replace('_', ' ', $q->type) }} | Bobot: {{ $q->point }}

@endforeach

Peserta ({{ $exam->participants->count() }})

@foreach($exam->participants as $p)
{{ $p->user->name }} ({{ $p->user->identifier }}) {{ $p->status }}
@endforeach
@endsection