@extends('index') @section('content')

{{ $title }}

@if(session('error'))
{{ session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif
@csrf
@if($attendanceData->isNotEmpty())
@csrf
Attendance Records
@foreach($attendanceData as $row) @foreach(['P1','P2','P3','P4','P5','P6','P7','P8','P9'] as $p) @php $val = strtolower($row->$p ?? 'nm'); @endphp @endforeach @endforeach
Roll No Adm No Student Name P1P2P3P4P5P6P7P8P9
{{ $row->rollno }} {{ $row->AdmsNo }} {{ $row->Name }}
@elseif(request()->isMethod('post'))

No attendance records found for the selected class, division, and date.

@endif
@endsection @section('contentjs') @endsection