@extends('backend.layouts.master') @section('title') Pré-inscription @endsection @section('css') @endsection @section('body') @endsection @section('content')
@if ($participant->code)
Inscription {{ $participant->user->firstname }} {{ $participant->user->name }}
@else
Pré-inscription {{ $participant->user->firstname }} {{ $participant->user->name }}
@endif
@can('gestion_edit') Modifier information @endcan Retour
@include('backend.participants.show-user-data') @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 @include('backend.participants.summary') @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)
Catégorie
{{ $new_category }}
{{-- ================= SELF PAYER ================= --}} @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->cheque_amount > 0)
Paiement Chèque
Banque : {{ $participant->cheque_bank }}
Chèque N° : {{ $participant->cheque_number }}
Montant : {{ $participant->cheque_amount }} TND
@endif @endif {{-- ================= PEC ================= --}} @if ($participant->category == 'Prise en charge') @if ($participant->pec_virement_amount > 0 || $participant->pec_cash_amount > 0 || $participant->pec_cheque_amount > 0)
Paiement organisme 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_cheque_amount > 0)
Paiement Chèque
Banque : {{ $participant->pec_cheque_bank }}
Chèque N° : {{ $participant->pec_cheque_number }}
Montant : {{ $participant->pec_cheque_amount }} TND
@endif {{-- ===== paiement personnel PEC ===== --}} @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 Chèque
Banque : {{ $participant->pec_self_cheque_bank }}
Chèque N° : {{ $participant->pec_self_cheque_number }}
Montant : {{ $participant->pec_self_cheque_amount }} TND
@endif @endif {{-- COMMENTAIRE --}} @if ($participant->comment)
Commentaire
{{ $participant->comment }}
@endif @endif @endif
@endsection