| Student name | {{ $student->person?->display_name ?? $student->full_name }} | Student number | {{ $student->student_number }} | ||
| Programme | {{ $student->programme?->code }} — {{ $student->programme?->name }} | Status | {{ ucfirst($student->status ?? 'active') }} | ||
| Faculty | {{ $student->programme->department->faculty->name }} | @else@endif | Date of enrolment | {{ optional($student->enrolled_at)?->toFormattedDateString() ?? '—' }} |
| Code | Course | Credits | Grade | GP | Quality |
|---|---|---|---|---|---|
| {{ $c['code'] }} | {{ $c['title'] }} | {{ $c['credits'] }} | {{ $c['grade'] }} | {{ $c['grade_point'] !== null ? number_format($c['grade_point'], 2) : '—' }} | {{ number_format($c['quality'], 2) }} |
|
Total credits earned
{{ $total_credits }}
|
Cumulative GPA
{{ $final_gpa !== null ? number_format($final_gpa, 2) : '—' }}
|
@if($classification)
Classification (interim)
{{ $classification }}
|
@endif