|
{{$participant->first_name}} {{$participant->last_name}}
|
{{$participant->title}}
|
{{$participant->association ? $participant->association : 'Not Provided'}}
|
{{$participant->position ? $participant->position : 'Not Provided'}}
|
@php
$countries = [
'' => 'Not Provided',
'HK' => 'Hong Kong',
'CH' => 'Mainland China',
'OS' => 'Overseas',
];
@endphp
{{$countries[$participant->country]}}
|
{{$participant->email}}
|
@if($participant->verified)
{{$participant->verified_datetime}}
@else
Not Yet
@endif
|
{{-- Edit
Delete --}}
|
@endforeach