@extends('layouts.app') @section('title', $featuredEvent->title) @section('description', $featuredEvent->subtitle ?? 'Événements exceptionnels') @section('content')
Événement à la Une

{{ $featuredEvent->title }}

@if($featuredEvent->subtitle)

{{ $featuredEvent->subtitle }}

@endif
{{ $featuredEvent->start_date->format('d M Y') }} @if($featuredEvent->start_date->format('Y-m-d') !== $featuredEvent->end_date->format('Y-m-d')) - {{ $featuredEvent->end_date->format('d M Y') }} @endif
@if($featuredEvent->location)
{{ $featuredEvent->location }}
@endif
@if($featuredEvent->start_date->isFuture())

L'événement commence dans

00

Jours

00

Heures

00

Minutes

00

Secondes
@endif
@php $aboutSection = $featuredEvent->sections->where('section_type', 'about')->where('is_active', true)->first(); @endphp @if($aboutSection || $featuredEvent->description)

À propos de {{ $featuredEvent->title }}

@if($aboutSection && $aboutSection->content)

{{ Str::limit($aboutSection->content, 300) }}

@elseif($featuredEvent->description)

{{ Str::limit($featuredEvent->description, 300) }}

@endif En savoir plus
@endif @if($featuredEvent->speakers->count() > 0)

Quelques Intervenants

@foreach($featuredEvent->speakers->take(3) as $speaker)
@if($speaker->image) {{ $speaker->name }} @else
@endif
{{ $speaker->name }}
@if($speaker->title)

{{ $speaker->title }}

@endif
@endforeach
@if($featuredEvent->speakers->count() > 3) @endif
@endif @if($otherEvents->count() > 0)

Nos autres événements

Découvrez également ces événements exceptionnels

@endif

Besoin d'informations ?

Notre équipe est à votre disposition pour répondre à toutes vos questions

Téléphone
+33 1 23 45 67 89
Chat en direct
@endsection @push('styles') @endpush @push('scripts') @endpush