@extends('admin.layouts.home') @section('title', 'Events Management') @section('content')
| ID | Image | Title | Location | Date & Time | Creator | Status | Featured | Attendees | Created | Actions |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $event->id }} |
@if($event->image)
|
{{ $event->title }} | {{ $event->location }} |
{{ \Carbon\Carbon::parse($event->event_date)->format('M d, Y') }}
{{ \Carbon\Carbon::parse($event->event_time)->format('h:i A') }} |
@if($event->creator) {{ $event->creator->name }} @else Unknown @endif | {{ $event->active ? 'Active' : 'Inactive' }} @if(\Carbon\Carbon::parse($event->event_date)->isPast()) Past @else Upcoming @endif | {{ $event->is_featured ? 'Featured' : 'Not Featured' }} | {{ $event->attendees_count ?? 'N/A' }} | {{ $event->created_at->format('M d, Y') }} |