@extends('layouts.admin') @section('content')

{{ $client->name }} - Events

Manage events for this client

Create Event Back to Dashboard

Events

{{ $events->total() }} events found
@forelse ($events as $event) @empty @endforelse
Name Date Status Participants Actions
{{ $event->name }}
@if($event->start_date) {{ \App\Helpers\DateHelper::formatForDisplay($event->start_date, "M d, Y") }} @if($event->end_date) - {{ \App\Helpers\DateHelper::formatForDisplay($event->end_date, "M d, Y") }} @endif @else N/A @endif
@if($event->is_active) Active @else Inactive @endif {{ $event->users_count ?? 0 }} Edit View
No events found
{{ $events->links() }}
@endsection