@extends('pdf.layout') @section('title', 'Room Attendance Details') @section('content') @include('include.report_header')

Daily Room Attendance Summary For Exam: {{ $data[0]->exam_code }}

Center: {{ $data[0]->center_code ?: '' }} - {{ $data[0]->center_name ?: '' }} | Date: {{ $attendance_date }}


@php $key = 1; @endphp @foreach($data as $item) @php $key++; @endphp @endforeach
SL Room No Exam Roll Student Name Paper Code
{{ $key }} {{ $item->room_no }} {{ $item->exam_roll }} {{ $item->student_name }} {{ $item->paper_code }}

@stop