@extends('pdf.layout') @section('title', 'Viva Mark 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')

Viva Mark List For {{ $candidate_item['exam_name'] }}-{{ $chunk[0]['year'] }}

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) @endforeach
SL Exam Roll Reg. No. Session Type Name of Examinee Full Mark Viva Mark Remark
{{ $key++ }} {{ $item['exam_roll'] }} {{ $item['reg_no'] }} {{ $item['session_year'] }} {{ $item['student_type'] }} {{ $item['student_name'] }} {{ $item['viva_full_marks'] }} {{ $item['viva_mark'] }}

______________________
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 principle 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