@extends('pdf.layout') @section('title', 'Center List') @section('content') @php $i = 1; @endphp @foreach(array_chunk($data, 25) as $chunk) @include('include.report_header')

Center List


@foreach($chunk as $item) @php $i++; @endphp @endforeach
SL. Center Name Division District Address Phone Email Mobile Student Capacity Responsible Person
{{ $i }} {{ $item['center_name'] }} {{ $item['division_name'] }} {{ $item['district_name'] }} {{ $item['address'] }} {{ $item['phone'] }} {{ $item['email'] }} {{ $item['mobile'] }} {{ $item['student_capacity'] }} {{ $item['responsible_person'] }}


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