@extends('layouts.studentapp') @section('title', 'Marksheet View') @section('content')
| Student ID | : | {{ optional($student->user)->uid }} | Class | : | {{ optional($student->classtype)->name }} |
|---|---|---|---|---|---|
| Name | : | {{ optional($student->user)->name }} | Session | : | {{ optional($student->session)->name }} |
| Roll | : | {{ optional($student->user)->roll }} | Year | : | {{ optional($student->classyear)->name }} |
| Group | : | {{ optional($student->group)->name }} | Student Type | : | {{ $student->student_type }} |
| SL | Subject Name | Code | Obtained marks | Total | Letter Grade | Grade Point | GPA (Without Additional Subject) |
Grade Point Average (GPA) | ||
|---|---|---|---|---|---|---|---|---|---|---|
| CQ | MCQ | PP | ||||||||
| {{ $loop->iteration }} | {{ optional($mark->examsubject)->name }} | {{ optional($mark->examsubject)->code }} | {{ $mark->cq }} | {{ $mark->mcq }} | {{ $mark->practial }} | {{ $mark->total }} | {{ $mark->grade }} | {{ $mark->point }} | @if ($key == 0){{ $resultsummery[0]->withoutpoint }} | @endif @if ($key == 0){{ $resultsummery[0]->point }} | @endif
| Additional Subject : | ||||||||||
| {{ $markentries->count() + 1 }} | {{ optional($optionalmark->examsubject)->name }} | {{ optional($optionalmark->examsubject)->code }} | {{ $optionalmark->cq }} | {{ $optionalmark->mcq }} | {{ $optionalmark->practial }} | {{ $optionalmark->total }} | {{ $optionalmark->grade }} | {{ $optionalmark->point }} | GP Above 2 | |
| @if ($optionalmark->point >= 2) {{ $optionalmark->point - 2 }} @else 0 @endif | ||||||||||