@extends('pdf.layout') @section('title', 'Attendance List: Room-wise Summary') @section('content') @foreach(array_chunk($summary_list, 25) as $chunk)

National University

Gazipur-1704, Bangladesh

{{ $chunk[0]['exam_name'] }} - {{ $chunk[0]['year'] }}

{{ $chunk[0]['center_code'] }}-{{ $chunk[0]['center_name'] }}

Invigilator And Room Wise Summary

Exam Code: {{ $chunk[0]['exam_code'] }}

@foreach($chunk as $item) @endforeach
Subject Paper Room Invigilator Date Total Candidate Total Present Total Absent Total Reported Total E-Type Total Script
{{ $item['subject_code'] }}-{{ $item['subject_name'] }} {{ $item['paper_code'] }}-{{ $item['paper_name'] }} {{ $item['room_no'] }} {{ $item['inv_name'] }} {{ $item['datetime'] }} {{ $item['total_student'] }} {{ $item['present_count'] }} {{ $item['absent_count'] }} {{ $item['reported_count'] }} {{ $item['e_type_count'] }} {{ $item['script_count'] }}

Generated On: {{ \Carbon\Carbon::now()->format('d/m/Y') }}

@endforeach @stop