@extends('schoolLayout.app') @section('content') @if (session('error')) @endif @if (session('success')) @endif

Total Students

{{ $totalActiveStudents }}

Present

{{ $presentCount }}

Half Day Leave

{{ $halfDayLeaveCount }}

Absent

{{ $absentCount }}

On Leave

{{ $onLeaveCount }}

icon
@csrf @foreach ($students as $student) @endforeach
Student Detail Student Name Attendance Remarks
Class-{{ $student->classes->first()->name }} | Section-{{ $student->sections->first()->name }} | Roll NO: {{ $student->latestAdmission->roll_number }} Student

{{ $student->student_name }}

@foreach (['Present', 'Absent', 'Leave', 'Half Day'] as $status) @endforeach
@endsection @section('scripts') @endsection