@extends('layouts.app') @section('title', $exam->name) @section('page-title', $exam->name) @section('content')
Subject
{{ $exam->subject->name }}
Class
{{ $exam->class_->full_name }}
Date
{{ $exam->exam_date->format('d M Y') }}
Total Marks
{{ $exam->total_marks }} (Pass: {{ $exam->pass_marks }})
| Student | Marks | Grade | Status |
|---|---|---|---|
| {{ $mark->student->name }} | {{ $mark->is_absent ? 'Absent' : $mark->marks_obtained . '/' . $exam->total_marks }} | {{ $mark->grade ?? '-' }} | {{ $mark->marks_obtained >= $exam->pass_marks ? '✅ Pass' : '❌ Fail' }} |