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

Detail Laporan

{{ $exam->title }} - {{ $exam->course->name }}

Total Peserta

{{ $totalParticipants }}

Rata-rata

{{ $avgScore }}%

Nilai Tertinggi

{{ $highestScore }}%

Nilai Terendah

{{ $lowestScore }}%

Distribusi Nilai

@foreach($distribution as $label => $count)
{{ $label }}
{{ $count }}
@endforeach

Daftar Nilai

@foreach($results as $r) @endforeach
Nama Nilai %
{{ $r->user->name }} {{ $r->total_score }} / {{ $r->max_score }} {{ $r->percentage }}%
@endsection