Result of HSC 2022-23 1st Year


Search your result

@if ($searching == 'Yes') @forelse ($students as $student) @php $markentries = App\Models\Exam\MarkEntry::where('student_id', $student->id) ->where('exam_id', 1) ->where('subject_type', 'Compulsory') ->get(); $markentriesoptional = App\Models\Exam\MarkEntry::where('student_id', $student->id) ->where('exam_id', 1) ->where('subject_type', 'Optional') ->get(); $resultsummery = App\Models\Exam\ResultSummery::where('exam_id', 1) ->where('student_id', $student->id) ->get(); @endphp @if ($resultsummery->count() > 0)
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 }}

@foreach ($markentries as $key => $mark) @if ($key == 0) @endif @if ($key == 0) @endif @endforeach @foreach ($markentriesoptional as $key => $optionalmark) @endforeach
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 }} {{ $resultsummery[0]->withoutpoint }} {{ $resultsummery[0]->point }}
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
@else

Result Not Found

@endif @empty

Student Not Found

@endforelse @else @endif