@extends('layouts.admin') @section('title', 'Mark Student Attendance') @section('page-title', 'Student Attendance') @section('content')

Operations / Student Attendance

Select Class & Date
@if($selectedClass && $selectedSection)
Class Register: {{ $selectedDate }}
{{ count($students) }} Students
@csrf
@forelse($students as $std) @php $status = isset($existingAttendance[$std->id]) ? $existingAttendance[$std->id] : 'Present'; @endphp @empty @endforelse
Roll Number Student Name Present Late Absent
{{ $std->roll_number }} {{ $std->name }}
No students mapped to this selected class and section.
@if(count($students) > 0)
@endif
@endif @endsection