@extends('layouts.app') @section('title', 'Report Cards') @section('page-title', 'Report Cards') @section('content')
Generate, view, and download student report cards
| Student | Class | Term | Marks | Percentage | Grade | Rank | Actions | |
|---|---|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($rc->student->name ?? '?', 0, 1)) }}
{{ $rc->student->name ?? '—' }}
|
{{ $rc->class_?->full_name ?? '—' }} | {{ $rc->term }} | {{ $rc->total_marks }} | {{ $rc->percentage }}% | @php $gColor = App\Services\GradeService::color($rc->overall_grade); @endphp {{ $rc->overall_grade }} | {{ $rc->rank ?? '—' }} | ||
|
No report cards generated yet Select a class and term above to generate |
||||||||