@extends('frontend.mediknode.layout.mainlayout') @section('content') @component('frontend.mediknode.components.breadcrumb') @slot('title') {!! \App\Helpers\TextHelper::addSup($event->title) !!} @endslot @slot('li_1') {{ $event->title }} @endslot @endcomponent
@if (session('account_created'))
{{ session('account_created') }}
@endif @if ($event->id == 19) {{-- Infinite logo carousel https://codepen.io/Navneet-Dwivedi/pen/LYXbvVL --}}
@endif @component('frontend.mediknode.components.buttons', ['event' => $event]) @endcomponent @php $buttonFlags = \App\Helpers\EventButtonHelper::flags($event, $userId); $showEventButtons = $buttonFlags['showEventButtons']; @endphp @if ($showEventButtons) @include('frontend.mediknode.landing-page.partials.event-buttons', [ 'position' => 'top', 'flags' => $buttonFlags, ]) @endif
@if ($event->cover)
{{ $event->client }}
@endif @if ($event->content)
{!! $event->content !!}
@endif
{{--
@if ($showParticipateButton) @endif @if ($showParticipateToLandingPageButton) @endif
@if ($alreadyRegistered)

Vous êtes déjà inscrit {{ $event->is_masculin ? 'au' : 'à la' }} « {{ $event->title }} »

@endif
@if ($showAbstractButton) @endif @if ($showAbstractToLandingPageButton) @endif @if ($showAbstractToParticipatePageButton) @endif @if ($showInternalProgramButton) @endif @if ($showExternalProgramButton) @endif @if ($showHebergementButton) @endif
--}} @if ($showEventButtons) @include('frontend.mediknode.landing-page.partials.event-buttons', [ 'position' => 'bottom', 'flags' => $buttonFlags, ]) @endif @component('frontend.mediknode.components.buttons', ['event' => $event]) @endcomponent
@component('frontend.mediknode.components.scrolltotop') @endcomponent @endsection