@extends('pdf.layout') @section('title', 'Rescrutiner List Students Course Wise') @section('content') @php $sl = 1; @endphp @foreach(array_chunk($list->toArray(), 25) as $chunk) @include('include.report_header')

Subject Wise Rescrutiner List For {{ $chunk[0]['exam_name'] }} & Year-{{ $chunk[0]['year'] }}


@foreach($chunk as $item) @php $sl++; @endphp @endforeach

Sl.

Name

Email

Mobile

NID

Subject

Designation

{{ $sl }}

{{ $item['tmis_id'] }}-{{ $item['name'] }}

{{ $item['email'] }}

{{ $item['mobile'] }}

{{ $item['nid_no'] }}

{{ ($item['subject_name'][0]['subject_code']) }}-{{ ($item['subject_name'][0]['subject_name']) }}

{{ $item['designation'] }}



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