@extends('admin.include.main') @section('content')
Start Attendance For Class {{$class->class_name}} {{$section->section_name}}
@if($student->isEmpty())

No Student in the Class!
Please add student First

@else
@csrf
@foreach($student as $st) @endforeach
Roll no. Student Name Present Absent
{{$st->roll_no}} {{$st->name}}
@endif
@endsection