@extends('adminlte::page') @section('title', 'Student Results') @section('content_header')
Admission No: {{ $student->admission_no ?? 'N/A' }}
Class: {{ $student->class->name ?? 'N/A' }}
Exam: {{ $exam->name ?? 'All Exams' }}
Department: {{ $departments->firstWhere('id', $selected_department_id)->name ?? 'All Departments' }}
| # | Subject | Mark | Grade | Point | Remark | Position |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $subject['subject'] }} | {{ number_format($subject['mark'], 2) }} | {{ $subject['grade'] ?? '-' }} | {{ $subject['point'] }} | {{ $subject['remark'] }} | {{ $subject['subject_position'] ?? '-' }} |
| No results found for this exam or department. | ||||||
| Total Points: | {{ $totalPoints }} | |||||