- Status
@if ($participant->code)
- Inscrit
@else
- Pré-inscrit
@endif
- Code pré-inscription
- {!! $participant->code_pre_registration ?? ' ' !!}
- Code inscription
- {!! $participant->code ?? ' ' !!}
- Prénom
- {!! $participant->user->firstname ?? ' ' !!}
- Nom
- {!! $participant->user->name ?? ' ' !!}
- Email
@if ($participant->user->is_mailbox_full == 1)
boîte de réception pleine
@elseif($participant->user->email_valid == 1)
valide
@elseif($participant->user->email_valid == 0)
invalide
@endif
-
@if ($participant->user->email_valid == 0)
{{ $participant->user->email }}
@elseif ($participant->user->is_mailbox_full == 1)
{{ $participant->user->email }}
@elseif ($participant->user->email_valid == 1)
{{ $participant->user->email }}
@endif
- Téléphone
- {!! $participant->user->phone ?? ' ' !!}
@if ($event->has_establishment)
- Organisme
- {!! $participant->user->establishment ?? ' ' !!}
@endif
@if ($event->has_fonction)
- Fonction
- {!! $participant->user->fonction ?? ' ' !!}
@endif
@if ($event->has_domain)
- Domaine
- {!! $participant->user->domain ?? ' ' !!}
@endif
@if ($event->has_specialty)
- Spécialité
- {!! $participant->user->specialty ?? ' ' !!}
@endif
@if ($event->has_mode)
- Mode d'exercice
- {!! $participant->user->mode ?? ' ' !!}
@endif
@if ($event->has_city)
- Ville
- {!! $participant->user->city ?? ' ' !!}
@endif
@if ($event->has_region)
- Région
- {!! $participant->user->gouvernorat ?? ' ' !!}
@endif
@if ($event->has_country)
- Pays
- {!! $participant->user->country ?? ' ' !!}
@endif
@if ($participant->paiement_mode == 'Paiement en ligne')
- Status paiement carte bancaire
- {!! $participant->payment_status ?? ' ' !!}
- Date paiement carte bancaire
- {!! $participant->payment_date ?? ' ' !!}
- ID paiement carte bancaire
- {!! $participant->payment_id ?? ' ' !!}
@endif
@if ($participant->workshops->count() > 0)
|
Désignation
|
Prix
|
@foreach ($participant->workshops as $workshop)
@if ($workshop->workshop?->visible_be)
|
{{ $workshop->workshop->titre }}
|
{{ $workshop->price }} TND
|
@endif
@endforeach
|
Total
|
{{ $participant->total_price }}
TND
|
|
Moyen de paiement
|
{{ $participant->paiement_mode }}
|
@endif
@if ($participant->code)
@php
$new_category = $participant->category;
if ($participant->category === 'Prise en charge') {
$new_category = 'PEC (' . $participant->organisme . ')';
} elseif (
$participant->category === $event->client ||
$participant->category === 'Exposant'
) {
$new_category = $participant->category . ' (' . $participant->organisme . ')';
}
@endphp
@if (!$event->is_quick_mode)
Détails de la Validation :
- Catégorie
- {{ $new_category }}
@if ($participant->category == 'Self-payer')
@if ($participant->virement_amount > 0 || $participant->cash_amount > 0 || $participant->cheque_amount > 0)
Paiement personnel :
@endif
@if ($participant->virement_amount > 0)
- Paiement Virement
- Banque : {{ $participant->virement_bank }}
- Ordre N° : {{ $participant->virement_order }}
- Montant : {{ $participant->virement_amount }} TND
@endif
@if ($participant->cash_amount > 0)
- Paiement Espèce
- Montant : {{ $participant->cash_amount }} TND
@endif
@if ($participant->virement_amount > 0)
- Paiement Virement
- Banque : {{ $participant->cheque_bank }}
- Chèque N° : {{ $participant->cheque_number }}
- Montant : {{ $participant->cheque_amount }} TND
@endif
@endif
@if ($participant->category == 'Prise en charge')
@if ($participant->pec_virement_amount > 0 || $participant->pec_cash_amount > 0 || $participant->pec_cheque_amount > 0)
Paiement de l'organisme de PEC :
@endif
@if ($participant->pec_virement_amount > 0)
- Paiement Virement
- Banque : {{ $participant->pec_virement_bank }}
- Ordre N° : {{ $participant->pec_virement_order }}
- Montant : {{ $participant->pec_virement_amount }} TND
@endif
@if ($participant->pec_cash_amount > 0)
- Paiement Espèce
- Montant : {{ $participant->pec_cash_amount }} TND
@endif
@if ($participant->pec_virement_amount > 0)
- Paiement Virement
- Banque : {{ $participant->pec_cheque_bank }}
- Chèque N° : {{ $participant->pec_cheque_number }}
- Montant : {{ $participant->pec_cheque_amount }} TND
@endif
@if (
$participant->pec_self_virement_amount > 0 ||
$participant->pec_self_cash_amount > 0 ||
$participant->pec_self_cheque_amount > 0)
Paiement personnel :
@endif
@if ($participant->pec_self_virement_amount > 0)
- Paiement Virement
- Banque : {{ $participant->pec_self_virement_bank }}
- Ordre N° :
{{ $participant->pec_self_virement_order }}
- Montant :
{{ $participant->pec_self_virement_amount }} TND
@endif
@if ($participant->pec_self_cash_amount > 0)
- Paiement Espèce
- Montant :
{{ $participant->pec_self_cash_amount }} TND
@endif
@if ($participant->pec_self_cheque_amount > 0)
- Paiement Virement
- Banque : {{ $participant->pec_self_cheque_bank }}
- Chèque N° :
{{ $participant->pec_self_cheque_number }}
- Montant :
{{ $participant->pec_self_cheque_amount }} TND
@endif
@endif
@if ($participant->comment)
- Commentaire
- {{ $participant->comment }}
@endif
@endif
@endif