|
Kaduna State Schools Quality
Assurance
Authority(KSSQAA)
|
| {{ $title }}
|
| Student result print out (Admin Copy)
|
|
|
Admin
COPY
|
|
|
|
|
|
| Name: |
{{ $student['lastname'] }}
{{ $student['firstname'] }}
{{ $student['middlename'] }}
|
|
| School: |
{{ $student->school ? $student->school->name : '' }}
|
|
| School Type:
|
{{ $student->school ? ($student->school->schooltype_id == 1 ? 'Public' : 'Private') : 'Fake result' }}
|
|
| Exam Type:
|
{{ $student->examtype ? $student->examtype->exam : '' }}({{ $student->examtype ? $student->examtype->examcode : '' }})
|
|
| Exam Number:
|
{{ $student['examnumber'] }}
|
|
|
|
|
@if ($student->studentgrades != null)
| Subject |
Grade |
@php
$sortedGrades = $student->studentgrades->sortBy('subject_id');
@endphp
@foreach ($sortedGrades as $studentgrade)
| {{ $studentgrade->subject }} |
{{ $studentgrade->grade }} |
@endforeach
@endif
@if ($student->studentgrades == null)
| No result found |
@endif
|
|
|
*********************{{ $student->school ? $student->school->name : 'Fake Result' }},
{{ $student->school ? $student->school->zone->zone : '' }}**********************
|