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

Practical Wanting 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
{{ $key }} {{ $item['exam_roll'] }} {{ $item['reg_no'] }} {{ $item['session_year'] }} {{ $item['student_type'] }} {{ $item['student_name'] }}
@endforeach @endforeach @stop