@extends('admin.layout') @section('title', $event->title) @section('content')

Statistiques

Participants : {{ $event->participants_count }}{{ $event->max_participants ? ' / '.$event->max_participants : '' }}

@if($fillRate !== null)

Remplissage : {{ $fillRate }}%

@endif

Statut : {{ $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 ?? '')) }}

@endif

Caté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
@if($event->image_url)
@endif
@if($event->description)

{{ $event->description }}

@endif

Participants ({{ $event->participants->count() }})

@forelse($event->participants as $user) @empty @endforelse
MembreStatutContactVilleInscrit 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.
@endsection