@extends('pdf.layout') @section('title', 'Viva Candidate Attendance 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 Candidate Attendance 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) @endforeach
SL Exam Roll Reg. No. Session Type Name of Examinee Signature
{{ $key++ }} {{ $item['exam_roll'] }} {{ $item['reg_no'] }} {{ $item['session_year'] }} {{ $item['student_type'] }} {{ $item['student_name'] }}  


______________________
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