@extends('layouts.student') @section('title', 'My Dashboard') @section('content') {{-- Student Info Banner --}}
Reg No: {{ auth()->user()->studentProfile->reg_number }}
@endifNo exam sessions are currently open.
| Exam | Status | Score | Date | |
|---|---|---|---|---|
| {{ $attempt->examSession->title ?? 'N/A' }} | @if($attempt->status === 'submitted') Submitted @elseif($attempt->status === 'timed_out') Timed Out @else In Progress @endif | @if($attempt->total_score !== null) {{ $attempt->total_score }} / {{ $attempt->total_questions }} @else — @endif | {{ $attempt->created_at->format('d M Y') }} | @if(in_array($attempt->status, ['submitted', 'timed_out'])) View Result @else Continue @endif |