@extends('backend.layouts.master') @section('title') Validation inscription @endsection @section('css') @endsection @section('body') @endsection @section('content')
Valider pré-inscription {{ $participant->user?->firstname }} {{ $participant->user?->name }}
{{-- Retour --}} @if (Auth::user()->id == 6 || Auth::user()->id == 1670) Editer inscription @endif
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->workshops->count() > 0)
@foreach ($participant->workshops as $workshop) @endforeach
Désignation Prix
{{ $workshop->workshop?->titre }} {{ $workshop->price }} TND
Total {{ $participant->total_price }} TND
Moyen de paiement {{ $participant->paiement_mode }}
@endif
@csrf @include('backend.manage.categories')
@endsection @section('scripts') @endsection