@extends('layouts.app') @section('title', 'Attendance Report') @section('page-title', 'Attendance Report') @section('content')
@if(isset($report) && count($report) > 0)
@foreach($report as $row) @endforeach
Student Present Absent Late Percentage
{{ $row['name'] ?? 'N/A' }} {{ $row['present'] ?? 0 }} {{ $row['absent'] ?? 0 }} {{ $row['late'] ?? 0 }} {{ number_format($row['percentage'] ?? 0, 1) }}%
@else
Select filters and click Generate to view the report.
@endif
@endsection