@extends('admin.layouts.master') @section('title', 'Student Statement of Result') @section('css') @endsection @section('content')
Search any student matriculation number to generate their complete Academic Statement across all registered semesters.
Please enter a student's Registration Number (Matriculation Number) in the search bar above to view their consolidated academic statement.
Student {{ $student->name }} ({{ $student->matric }}) was found in the portal system.
However, no examination scores have been published for this matriculation number yet.
|
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 | Point | Status |
|---|---|---|---|---|---|---|---|
| {{ $loop->index + 1 }} | {{ $grade->course_code }} | {{ $grade->title }} | {{ $grade->unit ?? 2 }} | {{ $grade->score }} | {{ $grade->grade }} | {{ $grade->point * ($grade->unit ?? 2) }} | @if(isset($grade->is_show) && $grade->is_show == 1) Published @else @endif |
| 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) }} |