@extends('admin.layouts.home') @section('title', 'Event Statistics') @section('styles') @endsection @section('content')

Event Statistics

Back to All Events Generate Report
Total Events
{{ $totalEvents }}
Upcoming Events
{{ $upcomingEvents }}
Featured Events
{{ $featuredEvents }}
Total Attendees
{{ $totalAttendees }}
Events by Month
Events by Day of Week
Top Events by Attendees
Top Events by Interests
Event Engagement
Total Attendees

{{ $totalAttendees }}

Users who have confirmed attending events

Total Interests

{{ $totalInterests }}

Users who have expressed interest in events

Average Attendees

{{ $totalEvents > 0 ? round($totalAttendees / $totalEvents, 1) : 0 }}

Average attendees per event

Average Interests

{{ $totalEvents > 0 ? round($totalInterests / $totalEvents, 1) : 0 }}

Average interests per event

Top Events
@foreach($topEvents as $event) @endforeach
Event Name Date Location Attendees Interests Creator Status Actions
{{ $event->title }} {{ \Carbon\Carbon::parse($event->event_date)->format('M d, Y') }} {{ Str::limit($event->location, 30) }} {{ $event->attendees_count }} {{ $event->interests_count }} @if($event->creator) {{ $event->creator->name }} @else Unknown @endif {{ $event->active ? 'Active' : 'Inactive' }} @if($event->is_featured) Featured @endif
@endsection @section('scripts') @endsection