@extends('layouts.admin') @section('title', 'Attendance Report') @section('page-title', 'Attendance Report') @section('page-subtitle', 'Service attendance statistics and trends') @section('content')

Filter Options

Export

Total Attendance

{{ number_format($stats['total'] ?? 0) }}

Average per Service

{{ number_format($stats['average'] ?? 0) }}

Services Recorded

{{ number_format($stats['services'] ?? 0) }}

Monthly Trends

@forelse($monthlyData as $data) @empty @endforelse
Month Total Attendance Visitors Members
{{ $data['month'] }} {{ $data['total'] }} {{ $data['first_timers'] }} {{ $data['members'] }}
No attendance records found for the selected period
@endsection