@extends('layouts.app') @section('title', 'School Dashboard') @section('breadcrumb', 'Dashboard') @section('content') {{-- Welcome Banner --}}
{{ $session?->name ?? 'No session configured' }} @if($term) • {{ $term->name }} @endif
| Student | Class | Status | |
|---|---|---|---|
{{ $student->full_name }} {{ $student->mcss_student_id }} |
{{ optional(optional($student->activeEnrollment)->classArm)->full_name ?? '—' }} | {{ ucfirst($student->status) }} | |
| No students yet. Register first student. | |||
| Student | Subject | Total | Grade |
|---|---|---|---|
| {{ optional(optional($result->enrollment)->student)->full_name ?? '—' }} | {{ optional($result->subject)->name }} | {{ $result->total_score ?? '—' }} | {{ $result->grade_letter ?? '—' }} |
| No grades entered yet for the current term. | |||