@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

{{ $user->domain == 'Médecine' ? 'Dr. ' : '' }}{{ $user->firstname }} {{ $user->name }}, nous avons le plaisir de vous annoncer que votre pré-inscription {{ $event->is_masculin ? 'au' : 'à la' }} « {!! \App\Helpers\TextHelper::addSup($event->title) !!} » a été bien effectuée.

@if (isset($participant) && $participant->workshops->count() > 0) @php $formationTiers = [ 1 => 40, 2 => 80, 3 => 100, 4 => 130, 5 => 150, ]; $inscriptionRow = null; $formations = []; $otherRows = []; foreach ($participant->workshops as $pw) { if ($pw->workshop?->f2 === 'formation') { $formations[] = $pw; } elseif ($pw->workshop?->f2 === 'inscription') { $inscriptionRow = $pw; } else { $otherRows[] = $pw; } } $formationCount = count($formations); $formationTotal = $formationTiers[$formationCount] ?? $formationCount * 40; $computedTotal = ($inscriptionRow ? $inscriptionRow->price : 0) + $formationTotal + collect($otherRows)->sum('price'); @endphp @if ($inscriptionRow) @endif @if ($formationCount > 0) @endif @foreach ($otherRows as $o) @endforeach
Désignation Prix
{{ $inscriptionRow->workshop?->titre }} {{ $inscriptionRow->price }} TND
Ateliers ({{ $formationCount }})
    @foreach ($formations as $f)
  • {{ $f->workshop?->titre }}
  • @endforeach
{{ $formationTotal }} TND
{{ $o->workshop?->titre }} {{ $o->price }} TND
Total {{ $computedTotal }} TND
Moyen de paiement {{ $participant->paiement_mode }}
@endif

CETTE PRÉ-INSCRIPTION NE SERA OFFICIELLE QU'APRÈS PAIEMENT.

@if ($participant->paiement_mode == 'Virement bancaire')

Voici les coordonnées bancaire :

  • Banque : BIAT
  • Agence : C7
  • Titulaire du compte : Association Tunisienne des Médecins de Famille de Monastir
  • RIB : 08 503 0002320104141 13

Nous vous prions d'envoyer la preuve de paiement par mail « {{ $event->pre_registration_reply_to_email }} » et de vous munir de cette preuve à votre arrivée au congrès.

@endif @if (!$event->is_closed_registration) @auth @if (!$event->participant($userId, $event->id)) @elseif ( $event->has_abstracts && !$event->is_closed_abstract_submission && auth()->user()->abstractsByEvents($event->id)->count() < $event->abstract_submission_limit) @endif @endauth @endif
@component('frontend.mediknode.components.scrolltotop') @endcomponent @endsection