@extends('adminlte::page') @section('title', 'Student Report') @section('content')

{{ $student->first_name }} {{ $student->last_name }} — {{ $exam->name }}

@foreach($subjectsData as $subject) @endforeach
Subject Type Mark Grade Point
{{ $subject['name'] }} {{ ucfirst($subject['type']) }} {{ $subject['mark'] }} {{ $subject['grade'] }} {{ $subject['point'] }}

Total Points (Best 7): {{ $totalPoints }}

GPA: {{ number_format($gpa, 2) }}

Division: {{ $division }}

Position in Class: {{ $position }}/{{ $totalStudents }}

@stop