@extends('pdf.layout') @section('title', 'Routine Wise Candidate List') @section('content') @php $sl = 1; @endphp @foreach($candidate_list_array as $candidate_list) @php $pl = 1; @endphp @foreach(array_chunk($candidate_list['candidates']->toArray(), 30) as $chunk) @include('include.report_header')

Exam Date({{ \Carbon\Carbon::parse(request()->get('date'))->format('d-m-Y') }}) Wise Candidate List-{{ $candidate_list['exam_name'] }}-{{ $candidate_list['exam_year'] }}


Center Code & Name: {{ $candidate_list['center_code'] }}-{{ $candidate_list['center_name'] }}
College Code & Name: {{ $candidate_list['college_code'] }}-{{ $candidate_list['college_name'] }}
Subject Code & Name: {{ $candidate_list['subject_code'] }}-{{ $candidate_list['subject_name'] }}
Course Name & Code: {{ $candidate_list['paper_code'] }}-{{ $candidate_list['paper_name'] }}


@foreach($chunk as $item) @endforeach
Sl. Paper Sl. Exam Roll Reg No. Candidate Name
{{ $sl++ }} {{ $pl++ }} {{ $item['exam_roll_no'] }} {{ $item['reg_no'] }} {{ $item['student_name'] }}


@include('include.generated_on') @include('include.page_break') @endforeach @endforeach @stop