@extends('layouts.app') @section('title') Contributeurs @endsection @section('page-title') Contributeurs Voir @endsection @section('button-top') @if (count($participants)) Exporter les contributeurs @endif @endsection @section('content')
{{--

Striped rows

Use .table-striped to add zebra-striping to any table row within the <tbody>.

--}} @if (count($participants)) @foreach ($participants as $participant) @endforeach @else @endif
# Prénom & Nom Adresse email Inscription
{{ $participant->id }} {{ $participant->prenom_nom }} {{ $participant->display_email }} Le {{ $participant->created_at->format('d/m/Y') }} @if (isset($participant->guest->consultation) and $participant->guest->consultation->compte_id == Auth::user()->selected_compte_id) sur la consultation {{ $participant->guest->consultation->long_title }} @endif
Aucun participant
@endsection