No result records found for registration number {{ $matric }}.
|
DEPARTMENT OF {{ strtoupper($student->department_name ?? 'DISTANCE LEARNING CENTRE') }} |
|
|
Reg. No.: {{ $student->matric }}
Student Name: {{ $student->name }}
Degree Option: {{ $student->degree_name }}
@php
if($student->level == 700) $lvl = 'PDG';
elseif($student->level == 800) $lvl = 'Year I';
elseif($student->level == 850) $lvl = 'Year II';
elseif($student->level == 875) $lvl = 'Year III';
else $lvl = $student->level;
@endphp
Level: {{ $lvl }}
|
||
| # | Course Code | Course Title | Unit | Score | Grade | Total Point |
|---|---|---|---|---|---|---|
| {{ $loop->index + 1 }} | {{ $grade->course_code }} | {{ $grade->title }} | {{ $grade->unit ?? 2 }} | {{ $grade->score }} | {{ $grade->grade }} | {{ $grade->point * ($grade->unit ?? 2) }} |
| TCUR | TCUE | TCP | GPA | Remark / Status | |
| Current | {{ $record->current_tcur }} | {{ $record->current_tcue }} | {{ $record->current_tcp }} | @php $gpa = 0; if ($record->current_tcur > 0) $gpa = $record->current_tcp / $record->current_tcur; @endphp{{ round($gpa, 2) }} | {{ $record->carry_over !== 'Pass.' ? $record->carry_over : '' }} {{ $record->remark }} |
| Previous | {{ $record->previous_tcur }} | {{ $record->previous_tcue }} | {{ $record->previous_tcp }} | @php $pgpa = 0; if ($record->previous_tcur > 0) $pgpa = $record->previous_tcp / $record->previous_tcur; @endphp{{ round($pgpa, 2) }} | |
| Cumulative | {{ $record->current_tcur + $record->previous_tcur }} | {{ $record->current_tcue + $record->previous_tcue }} | {{ $record->current_tcp + $record->previous_tcp }} | @php $cgpa = 0; $denom = $record->current_tcur + $record->previous_tcur; if ($denom > 0) $cgpa = ($record->current_tcp + $record->previous_tcp) / $denom; @endphp{{ round($cgpa, 2) }} |