@extends('adminlte::page') @section('title', 'Student Result') @section('content_header')

Student Result

@stop @section('content')

{{ $student->first_name }} {{ $student->last_name }}

Class: {{ $student->class->name ?? '-' }}

Academic Session: {{ $student->academicSession->name ?? '-' }}


GPA & Division

Total Points (Best 7): {{ $result['total_points'] }}

GPA: {{ $result['gpa'] }}

Division: {{ $result['division'] }}

@stop