@extends('layouts.app') @section('title', 'Exam Results') @section('page-title', 'Results — ' . $exam->title) @section('content')
{{-- Stats --}}| Candidate | Attempt | Score | % | Grade | Status | Time Taken | Submitted |
|---|---|---|---|---|---|---|---|
|
{{ $att->candidate->name }}
{{ $att->candidate->email }}
|
#{{ $att->attempt_number }} | {{ $att->total_score }}/{{ $exam->total_marks }} | {{ round($att->percentage, 1) }}% | {{ $att->grade_label }} | {{ $att->passed ? 'PASS' : 'FAIL' }} | {{ $att->time_taken_seconds ? gmdate('H:i:s', $att->time_taken_seconds) : '—' }} | {{ $att->submitted_at?->format('M j, Y H:i') }} |
| No graded results yet. | |||||||