@extends('layouts.app') @section('content')
Dashboard
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach($participants as $participant)
@csrf @method('PUT')
Nom et Prénom:
Téléphone:
jeu selectionné : @if($participant->jeux==1)Jeux de lancé cerceau @elseif($participant->jeux==2) Jeux puissance4 @else($participant->jeux==3) Tir au but @endif
Cadeau Adulte : @if($participant->cadeau_A ==1)TV @elseif($participant->cadeau_A ==2) Téléphone @elseif($participant->cadeau_A ==3) Montre enfant @elseif($participant->cadeau_A ==4) Ballon @elseif($participant->cadeau_A ==5) Fouta @elseif($participant->cadeau_A ==6) Porte clé @elseif($participant->cadeau_A ==7) 1DT @elseif($participant->cadeau_A ==8) 100 Mo @else Aucun @endif
Cadeau Enfant : @if($participant->cadeau_E ==1)Bonbon @elseif($participant->cadeau_E ==2) Jouet @else Aucun @endif
@endforeach
@endsection