@extends('layouts.app') @section('title', 'Attendance Report') @section('page-title', 'Attendance Report') @section('content')
| Student | Present | Absent | Late | Percentage |
|---|---|---|---|---|
| {{ $row['name'] ?? 'N/A' }} | {{ $row['present'] ?? 0 }} | {{ $row['absent'] ?? 0 }} | {{ $row['late'] ?? 0 }} | {{ number_format($row['percentage'] ?? 0, 1) }}% |