{{ $college->college_name }}

{{ $college->affiliated_by }}

{{ $college->address }}

Students Attendance Report

From Date: {{ $from_date }} To Date: {{ $to_date }}

@foreach ($studentAttendance as $index => $std) @endforeach
S.No Class Name Student Name Attendance Date Status
{{ $index + 1 }} {{ $std->class->class_name ?? 'N/A' }} {{ $std->student->firstname ?? 'N/A' }} {{ \Carbon\Carbon::parse($std->attendance_date)->format('d/m/y') ?? 'N/A' }} {{ $std->status ?? 'N/A' }}