@extends('admin.layout') @section('title', $event->title) @section('content')
{{ $event->city ?? '—' }} · {{ $event->starts_at?->format('d/m/Y H:i') }}
Participants : {{ $event->participants_count }}{{ $event->max_participants ? ' / '.$event->max_participants : '' }}
@if($fillRate !== null)Remplissage : {{ $fillRate }}%
@endifStatut : {{ $event->is_active ? 'Actif' : 'Inactif' }}
Validation : {{ $event->review_status ?? 'approved' }}
Inscription : {{ ($event->join_mode ?? 'instant') === 'approval' ? 'Sur validation organisateur' : 'Directe' }}
@if($event->creator)Organisateur : {{ trim(($event->creator->first_name ?? '').' '.($event->creator->name ?? '')) }}
@endifCatégorie : {{ $event->category }}
@if($event->venue)Lieu : {{ $event->venue }}
@endif @if($event->ends_at)Fin : {{ $event->ends_at->format('d/m/Y H:i') }}
@endif{{ $event->description }}
| Membre | Statut | Contact | Ville | Inscrit le | |
|---|---|---|---|---|---|
| {{ trim(($user->first_name ?? '').' '.($user->name ?? '')) ?: '—' }} | {{ $user->pivot->status ?? 'approved' }} | {{ $user->phone ?? $user->email }} | {{ $user->location_city ?? '—' }} | {{ $user->pivot->joined_at?->format('d/m/Y H:i') }} | Profil |
| Aucun participant pour le moment. | |||||