|
@if ($participant->override_academic_title)
{{ $participant->override_academic_title }}
@elseif($participant?->user?->domain == 'Médecine')
Dr.
@endif
{{ mb_strtoupper($participant->user->firstname, 'utf-8') }}
|
|
{{ mb_strtoupper($participant->user->name, 'utf-8') }}
|
|
{{ $participant->user->country }}
|
|
@foreach ($participant->event->workshops->groupBy('groupe') as $groupe => $workshopsGroup)
@if ($workshopsGroup->first()->type == 'atelier')
@foreach ($workshopsGroup as $index => $workshop)
|
@if ($participant->workshop($workshop->id))
{{ $workshop->code }}
@endif
|
@endforeach
@endif
@endforeach
|
{{ substr($participant?->code, -5) }}
|
|
@if (
$participant->category == $participant->event->client &&
($participant->organisme == 'Bureau' || $participant->organisme == 'Organisateur'))
ORGANISATION
@elseif($participant->category == 'Intervenant')
INTERVENANT
@elseif($participant->category == 'Exposant')
SPONSOR
@elseif($participant->category == 'Presse')
PRESS
@elseif($participant->category == 'Staff')
STAFF
@elseif($participant->category == 'Team')
TEAM
@elseif($participant->category == 'Manager')
MANAGER
@else
PARTICIPANT
@endif
|