@extends('pdf.layout') @section('title', 'Center-wise Summary') @section('content') @foreach(array_chunk($summary_list, 20) as $chunk)

National University

Gazipur-1704, Bangladesh

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

{{--

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

--}}

Attendance Center Wise Summary

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

@foreach($chunk as $item) @endforeach
Center Code & Name Attendance Date Total Candidate Total Present Total Absent Total Reported
{{ $item['center_code'] }}-{{ $item['center_name'] }} {{ \Carbon\Carbon::make($item['attendance_date'])->format('d-m-Y') }} {{ $item['total_student'] }} {{ $item['present_student'] }} {{ $item['absent_student'] }} {{ $item['reported_student'] }}

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

@endforeach @stop