{{-- Letterhead --}}
Monrovia Consolidated School System
Ministry of Education · Republic of Liberia · P.O. Box 9010, Monrovia
Official Academic Transcript
{{-- Student Information --}}
Student Name
{{ $student->full_name }}
MCSS Student ID
{{ $student->mcss_student_id }}
Date of Birth
{{ $student->date_of_birth?->format('M d, Y') ?? '—' }}
Gender
{{ ucfirst($student->gender ?? '—') }}
Nationality
{{ $student->nationality }}
Schools Attended
{{ count($schools_attended) }}
{{-- Cumulative GPA Summary --}}
{{ $cumulative_gpa ?? '—' }}
Cumulative GPA (4.0)
{{ $gpa_class }}
Overall Classification
{{ $purpose }}
Purpose of Transcript
{{ $generated_at }}
Date Issued
{{-- Academic History Per Session --}}
📚 Academic History — All MCSS Schools
@foreach($history as $session)
{{ $session['session'] }} — {{ $session['class'] }}
{{ $session['school'] }}
@foreach($session['terms'] as $term)
{{ $term['term_name'] }}
@if($term['term_gpa'] !== null)
| Term GPA: {{ $term['term_gpa'] }}
@endif
| Subject |
CA1 |
CA2 |
Exam |
Total |
Grade |
GPA |
Remark |
@foreach($term['subjects'] as $subj)
| {{ $subj['subject'] }} |
{{ $subj['ca1'] ?? '—' }} |
{{ $subj['ca2'] ?? '—' }} |
{{ $subj['is_absent'] ? 'ABS' : ($subj['exam'] ?? '—') }} |
{{ $subj['total'] ?? '—' }} |
{{ $subj['grade'] ?? '—' }} |
{{ $subj['gpa'] ?? '—' }} |
{{ $subj['remark'] ?? '—' }} |
@endforeach
@endforeach
{{-- Attendance Summary --}}
@if(!empty($session['attendance']))
Attendance:
@foreach($session['attendance'] as $att)
{{ $att['term'] }}: {{ $att['present'] }}/{{ $att['opened'] }} days present
@if(!$loop->last), @endif
@endforeach
@endif
@if($session['position'])
Final Position in Class: {{ $session['position'] }}
@endif
@endforeach
{{-- Transfer History --}}
@if(!empty($transfer_history))
🔁 Transfer History
| Transfer Ref |
From School |
To School |
Date |
Status |
@foreach($transfer_history as $t)
| {{ $t['ref'] }} |
{{ $t['from'] }} |
{{ $t['to'] }} |
{{ $t['date'] }} |
{{ ucfirst($t['status']) }} |
@endforeach
@endif
{{-- Signatures --}}
Registrar's Signature & Stamp
School Principal / Head Teacher
{{-- Verification Bar --}}
MCSS TRANSCRIPT VERIFICATION |
Verification Code: {{ $verification_code }}
| Verify at: {{ config('app.url') }}/verify
| Any alteration renders this document invalid.