@extends('pdf.layout')
@section('title', 'Mismatch Student List')
@section('content')
@php
$i = 1;
@endphp
@foreach(array_chunk($data->toArray(), 15) as $chunk)
@include('include.report_header')
Mismatch Student List
{{ $chunk[0]['exam_name'] }} & Year-{{ $chunk[0]['year'] }}
SL. | Exam Roll | Reg No. | Session | Center Code & Name | College Code & Name | Subject Code & Name | Course | Attendance Status | Theory Mark Status | {{ $i }} | {{ $item['exam_roll'] }} | {{ $item['reg_no'] }} | {{ $item['session_year'] }} | {{ $item['center_code'] }}-{{ $item['center_name'] }} | {{ $item['college_code'] }}-{{ $item['college_name'] }} | {{ $item['subject_code'] }}-{{ $item['college_name'] }} | {{ $item['paper_code'] }}-{{ $item['paper_name'] }} | {{ $item['attendance_status'] }} | {{ $item['theory_status'] }} | @php $i++; @endphp @endforeach
---|