@extends('pdf.layout') @section('title', 'Practical Mark List') @section('content') @php $key = 1; $chunk_size = 18; $studentArray = $student_list->toArray(); $chunks = array_chunk($studentArray, $chunk_size); @endphp @foreach ($chunks as $chunk) @php $subjectGroups = collect($chunk)->groupBy('subject_code'); @endphp @foreach ($subjectGroups as $subjectChunk) @include('include.pdf_header')

{{ strtoupper($subjectChunk[0]->paper_type . ' Candidate List For ' . $subjectChunk[0]->exam_code . ' - ' . $subjectChunk[0]->exam_name . ' Examination - ' . $subjectChunk[0]->exam_year) }}


Center Code & Name:

College Code & Name: {{ $subjectChunk[0]->college_code }} - {{ $subjectChunk[0]->college_name }}

Subject Code & Name: {{ $subjectChunk[0]->subject_code }} - {{ $subjectChunk[0]->subject_name }}

Course Code & Name: {{ $subjectChunk[0]->paper_code }} - {{ $subjectChunk[0]->paper_name }} {{-- No. of Student: {{ count($subjectChunk) }} / {{ count($studentArray) }} --}} No. of Student: {{ count($studentArray) }}


@if ($subjectChunk[0]->exam_code == 8762) @else @endif @foreach ($subjectChunk as $item) @if ($subjectChunk[0]->exam_code == 8762) @else @endif @php $key++; @endphp @endforeach
SL Exam Roll Reg. No. Session Reg Type Type Name of Examinee Full MarkMoot Court Mark Viva Mark Total {{ ucfirst(strtolower($subjectChunk[0]->paper_type ?? '')) }} Mark
{{ $key }} {{ $item->exam_roll_no ?? '' }} {{ $item->reg_no ?? '' }} @if ($item->connected_college_status == 1 && !empty($item->st_college_name)) /{{ $item->st_college_name }} @endif {{ $item->ac_session ?? '' }} {{ $item->student_type ?? '' }} {{ $item->candidate_type ?? '' }} {{ $item->name ?? '' }} {{ $item->practical_full_marks ?? ($item->viva_full_marks ?? 0) }}



______________________
External-1 Sign & Date


______________________
External-2 Sign & Date

_____________________
Principal Sign & Date

______________________
Internal-1 Sign & Date


______________________
Internal-2 Sign & Date



Note: Internal & external examiner will sign here, and finally, the Principal will sign the report. One hard copy needs to be sent to the National University, and one copy should be preserved in the center or college.


{{-- Conditional page break to avoid extra blank page --}} @if (!($loop->last && $loop->parent->last))
@endif @endforeach @endforeach @endsection