@extends('pdf.layout') @section('title', 'Practical Mark Blank List') @section('content') @foreach($candidate_array as $candidate_item) @php $key = 1; $chunk_size = 15; @endphp @foreach(array_chunk($candidate_item['student_list'], $chunk_size) as $chunk) @include('include.report_header')

Practical Mark List For {{ $candidate_item['exam_name'] }}-{{ $candidate_item['exam_code'] }}


Center Code & Name: {{ $candidate_item['center_code'] }}-{{ $candidate_item['center_name'] }}

College Code & Name: {{ $candidate_item['college_code'] }}-{{ $candidate_item['college_name'] }}

Subject Code & Name: {{ $chunk[0]['subject_code'] }}-{{ $chunk[0]['subject_name'] }}

Course Code & Name: {{ $chunk[0]['paper_code'] }}-{{ $chunk[0]['paper_name'] }}

No. of Student: {{ $candidate_item['student_count'] }}

{{--
--}}

@foreach($chunk as $item) @php $key++; @endphp @endforeach
SL Exam Roll Reg. No. Session Type Name of Examinee Full Mark Practical Mark
{{ $key }} {{ $item['exam_roll'] }} {{ $item['reg_no'] }} {{ $item['session_year'] }} {{ $item['student_type'] }} {{ $item['student_name'] }} {{ $item['practical_full_marks'] }}



______________________
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 need to send at National University and one copy should be preserved in the center or college.


@endforeach @endforeach @stop