@component('mail::message') # Nouvelle inscription — Soirée Rétro Une nouvelle inscription a été enregistrée : - **Nom :** {{ $inscription->nom }} {{ $inscription->prenom }} - **Adresse :** {{ $inscription->adresse }} - **Email :** {{ $inscription->email }} - **Téléphone :** {{ $inscription->telephone }} ### Participants - **Adultes :** {{ $inscription->nb_adultes }} - **Enfants :** {{ $inscription->nb_enfants }} - **Montant :** {{ $inscription->montant }} € - **Paiement :** {{ $inscription->paiement_label }} @if ($inscription->nb_adultes > 0) ### Menus adultes @foreach ($inscription->choixAdultes() as $ligne) - {{ $ligne }} @endforeach @endif @if ($inscription->nb_enfants > 0) ### Menus enfants @foreach ($inscription->choixEnfants() as $ligne) - {{ $ligne }} @endforeach @endif @endcomponent