@if ($event->thumbnail)
|
@endif
|
|
|
{{--
{!! \App\Helpers\TextHelper::addSup($event->title) !!}
--}}
Pré-inscription
|
|
|
|
{{ $user?->domain == 'Médecine' ? 'Dr. ' : '' }}{{ $user->firstname }}
{{ $user->name }}, nous avons le
plaisir
de
vous
annoncer que nous avons bien reçu votre demande de
pré-inscription.
La référence de votre demande de pré-inscription est :
N°: {{ $codePreRegistration }}
@if ($event->has_paiement)
Les détails de votre demande de pré-inscription :
|
Désignation
|
Prix
|
@php
$formationTiers = [
1 => 40,
2 => 80,
3 => 100,
4 => 130,
5 => 150,
];
$inscriptionRow = null;
$formations = [];
$otherRows = [];
foreach ($participant->workshops as $pw) {
if (!$pw->workshop->visible_fe) {
continue;
}
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)
|
{{ $inscriptionRow->workshop->titre }}
|
{{ $inscriptionRow->price }} TND
|
@endif
@if ($formationCount > 0)
Ateliers ({{ $formationCount }})
@foreach ($formations as $f)
- {{ $f->workshop->titre }}
@endforeach
|
{{ $formationTotal }} TND
|
@endif
@foreach ($otherRows as $o)
|
{{ $o->workshop->titre }}
|
{{ $o->price }} TND
|
@endforeach
|
Total
|
{{ $computedTotal }}
TND
|
|
Mode de paiement
|
{{ $participant->paiement_mode }}
|
@endif
|
@if ($event->has_paiement)
|
|
|
CETTE PRÉ-INSCRIPTION NE SERA OFFICIELLE QU'APRÈS PAIEMENT.
|
@endif
@if ($participant->paiement_mode == 'Virement bancaire')
|
Coordonnées bancaire :
-
Compte : Association
Tunisienne des Médecins
de Famille de Monastir
-
Banque : BIAT
-
Agence : C7
-
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
|
|
|
Contactez-nous :
{{ $event->phone_contact }}
{{ $event->pre_registration_reply_to_email }}
|
|
|
{{-- @include('emails.footer.' . $event->slug) --}}