@extends('layouts.app') @section('title', 'Detail Hasil') @section('content')
{{ $exam->title }}
| Mahasiswa | Nilai | Persentase | Status | Waktu |
|---|---|---|---|---|
| {{ $r->user->name }} ({{ $r->user->identifier }}) | {{ $r->total_score }} / {{ $r->max_score }} | {{ $r->percentage }}% | {{ $r->status }} | @if($r->started_at && $r->finished_at) {{ $r->started_at->diff($r->finished_at)->format('%H:%I:%S') }} @else - @endif |