@if($event->is_ongoing())
En cours
@elseif($event->start_date->isFuture())
{{ $event->start_date->diffForHumans() }}
@endif
{{ $event->title }}
@if($event->subtitle)
{{ $event->subtitle }}
@endif
Date
{{ $event->start_date->format('d/m/Y') }}
Lieu
{{ $event->location }}
Durée
{{ $event->getDurationInDays() }} jour(s)
@if($event->max_participants)
Places disponibles
@php
$registeredCount = $event->registrations ? $event->registrations->count() : 0;
$percentage = min(100, ($registeredCount / $event->max_participants) * 100);
@endphp
{{ $event->max_participants - $registeredCount }} / {{ $event->max_participants }}
@endif