@extends('frontend.mediknode.layout.mainlayout') @section('content') @component('frontend.mediknode.components.breadcrumb') @slot('title') Demande de Pré-inscription @endslot @slot('li_1') Demande de Pré-inscription @endslot @endcomponent
@csrf @php $is_adherent = 0; $is_fee = 0; $isBDC = 0; $preferentiel = 0; $showMasterclass = 0; if ($request->is_adherent_1 === '1') { $is_adherent = 0; $is_fee = 1; } if ($request->is_adherent_1 === '0') { $is_adherent = 0; $is_fee = 0; } if ($request->is_adherent_2 === '0') { $is_adherent = 0; $is_fee = 0; } if ($request->is_adherent_2 === '1') { $is_adherent = 1; $is_fee = 0; } if ($request->is_adherent_2 === '2') { $is_adherent = 0; $is_fee = 1; } if ($request->statut == 'isBDC') { $isBDC = 1; } if ($event->has_before_date == 1 && $event->is_before_date_active == 1) { $preferentiel = 1; } else { $preferentiel = 0; } if ($is_adherent == 1 || $is_fee == 1) { $showMasterclass = 1; } @endphp {{--

request->is_adherent_1 : {{ $request->is_adherent_1 }}

request->is_adherent_2 : {{ $request->is_adherent_2 }}

--}} {{-- {{ dd($request) }} --}} {{--

is_resident : {{ $request->is_resident }}

is_adherent : {{ $is_adherent }}

is_fee : {{ $is_fee }}

isBDC : {{ $isBDC }}

preferentiel : {{ $preferentiel }}

showMasterclass : {{ $showMasterclass }}

--}}
Choisir une option pour passer à l'étape suivante
@component('frontend.mediknode.components.scrolltotop') @endcomponent @endsection