@if(session('success'))
{{ session('success') }}
@endif
{{-- Student Information --}}
Student Information
| Registration Number |
{{ $student->reg_number }} |
| Full Name |
{{ $student->first_name }} {{ $student->surname }} |
| National ID / Passport |
{{ $student->national_id }} |
| Date of Birth |
{{ $student->dob }} |
{{-- Programme Details --}}
Programme Enrolled
@if ($programme)
| Programme Code |
Programme Description |
Total Credits |
Duration |
Status |
| {{ $programme->code }} |
{{ $programme->description }} |
{{ $programme->total_credits }} |
{{ $programme->duration }} years |
@if ($programme->status == 'completed')
Completed
@elseif ($programme->status == 'ongoing')
Ongoing
@elseif ($programme->status == 'deferred')
Deferred
@else
{{ ucfirst($programme->status) }}
@endif
|
@else
No programme registered yet.
@endif