@extends('pdf.layout')
@section('title', 'Practical Student List')
@section('content')
@php
$key = 1;
$chunk_size = 28;
$studentArray = $student_list->toArray();
$chunks = array_chunk($studentArray, $chunk_size);
@endphp
@foreach ($chunks as $chunk)
@php
$subjectGroups = collect($chunk)->groupBy('subject_code');
@endphp
@foreach ($subjectGroups as $subjectChunk)
@include('include.pdf_header')
SL | Exam Roll | Reg. No. | Session | Reg Type | Type | Name of Examinee |
---|---|---|---|---|---|---|
{{ $key }} | {{ $item->exam_roll_no ?? '' }} | {{ $item->reg_no ?? '' }} @if($item->connected_college_status == 1 && !empty($item->st_college_name)) /{{ $item->st_college_name }} @endif | {{ $item->ac_session ?? '' }} | {{ $item->student_Type ?? '' }} | {{ $item->candidate_type ?? '' }} | {{ $item->name ?? '' }} |