@extends('layouts.public') @section('title', 'Inscription confirmée - ' . $event->title) @section('content')

Inscription confirmée !

Votre inscription à {{ $event->title }} a été enregistrée avec succès.

Détails de votre inscription

{{ $registration->ticket_code }}

@if($registration->status === 'confirmed') Confirmé @else En attente @endif

Informations du participant

Nom complet: {{ $registration->full_name }}
Email: {{ $registration->email }}
@if($registration->phone)
Téléphone: {{ $registration->phone }}
@endif @if($registration->company)
Entreprise: {{ $registration->company }}
@endif

Détails du billet

Type de billet: {{ $registration->ticketType->name }}
Quantité: {{ $registration->quantity }}
Prix unitaire: @if($registration->ticketType->price > 0) {{ number_format($registration->ticketType->price, 0, ',', ' ') }} FCFA @else Gratuit @endif
Total payé: @if($registration->total_amount > 0) {{ number_format($registration->total_amount, 0, ',', ' ') }} FCFA @else Gratuit @endif

Détails de l'événement

{{ $event->title }}

@if($event->subtitle)

{{ $event->subtitle }}

@endif

Date de début

{{ $event->start_date->format('d/m/Y à H:i') }}

@if($event->end_date && $event->end_date->ne($event->start_date))

Date de fin

{{ $event->end_date->format('d/m/Y à H:i') }}

@endif @if($event->location)

Lieu

{{ $event->location }}

@if($event->address)

{{ $event->address }}

@endif
@endif
@if($event->contact_email || $event->contact_phone)

Contact organisateur

@if($event->contact_email) @endif @if($event->contact_phone) @endif
@endif

Prochaines étapes

1

Confirmation par email

Vous recevrez un email de confirmation avec tous les détails de votre inscription.

2

Conservez votre code

Notez votre code de réservation {{ $registration->ticket_code }} pour le jour de l'événement.

3

Jour de l'événement

Présentez-vous avec votre code de réservation et une pièce d'identité.

4

Rappels

Nous vous enverrons des rappels par email avant l'événement.

@endsection