@extends('admin.layouts.home') @section('title', 'Event Statistics') @section('styles') @endsection @section('content')
Users who have confirmed attending events
Users who have expressed interest in events
Average attendees per event
Average interests per event
| 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 |