@extends('layouts.admin') @section('title', 'Attendance Report') @section('page-title', 'Attendance Report') @section('page-subtitle', 'View detailed attendance statistics') @section('content')

Attendance Report

@if(isset($reportData))

Total Attendance

{{ $reportData['total_attendance'] }}

Total Services

{{ $reportData['total_services'] }}

Avg per Service

{{ $reportData['average_per_service'] }}

First Timers

{{ $reportData['first_timers'] }}

@forelse($reportData['services'] as $record) @empty @endforelse
Service Date Attendance First Timers Actions
{{ $record['service_name'] }} {{ $record['date'] }} {{ $record['attendance'] }} {{ $record['first_timers'] }} View
No attendance records found for the selected period.
@endif
@endsection