@extends('layouts.admin') @section('title', 'Student Result Slip') @section('header-title', 'Result Slip - ' . $student->name) @section('content')
| Subject | Exam | Total Marks | Grade | Status |
|---|---|---|---|---|
| {{ $result->subject->name ?? '-' }} | {{ $result->subject->exam->name ?? '-' }} | {{ $result->total_marks }} | {{ $result->grade ?? '-' }} | {{ ucfirst($result->status) }} |
| No results available. | ||||
| Q# | Max | AI Score | Examiner Score | Status |
|---|---|---|---|---|
| {{ $answer->question->question_number ?? '-' }} | {{ $answer->question->max_marks ?? '-' }} | {{ $answer->ai_score ?? '-' }} | {{ $answer->examiner_score ?? '-' }} | {{ ucfirst(str_replace('_', ' ', $answer->status)) }} |