| |
Pré-inscription Congrès STMGF 2023
|
|
Dr. {{ $firstname }} {{ $lastname }}
Référence demande de pré-inscription : N°:
{{ $codePreRegistration }}
Les détails de la demande de pré-inscription :
|
Désignation
|
Prix
|
@php
$total = 0;
@endphp
@foreach ($userParticipant as $key => $value)
@if (
$key != 'E01' &&
$key != 'F01' &&
$key != 'V01' &&
$key != 'V02' &&
$key != 'S01' &&
$key != 'S02' &&
$key != 'D01' &&
$key != 'D02')
@continue
@elseif ($value == null)
@continue
@else
@endif
@php
$workshop = Workshop::where('titre', $value)
->where('event_id', $eventID)
->first();
$total = $total + $userParticipant[$key . '_price'];
@endphp
|
@if ($workshop->date)
{{ $workshop->date }}, de {{ $workshop->horaire }}
@endif
{{ $value }}
@if ($workshop->salle)
Salle : {{ $workshop->salle }}
@endif
|
{{ $userParticipant[$key . '_price'] }} TND
|
@endforeach
|
TOTAL
|
{{ $userParticipant['total_price'] }} TND
|
Le moyen de paiement choisi :
@if ($userParticipant['paiement_mode'] == 'Virement bancaire')
Virement Bancaire
@endif
@if ($userParticipant['paiement_mode'] == 'Bon de commande Hôpitaux')
Bon de Commande
@endif
@if ($userParticipant['paiement_mode'] == 'Autre')
Autre
@endif
|
|
|
|