@extends('admin.layouts.app') @section('title', 'Attendance Report') @section('breadcrumb')
Generate and view student attendance analytics
| Student | Code / Roll No | Total Classes | Attended | Percentage | Status |
|---|---|---|---|---|---|
| {{ $row->student_name }} |
{{ $row->student_code }}
Roll: {{ $row->roll_no }}
|
{{ $row->total }} | {{ $row->attended }} |
@if($row->pct < 75)
{{ $row->pct }}%
@elseif($row->pct < 85)
{{ $row->pct }}%
@else
{{ $row->pct }}%
@endif
|
@if($row->pct < 75) Defaulter @else Eligible @endif |
Try adjusting your date range filters.
Use the filters above to view attendance analytics.