@extends("layouts.main") @section('title', trans('core.title_test_result')) @section("content") @php $auth = Auth::guard('corporate')->user(); $getsettings_details=\App\Helper\HireMeeHelper::getCorporateSettingsDetails($auth->company_id); @endphp
{{ $testevent->name }}
{{ $testevent->assessment->name }}

{{ $testevent->start_date }}
{{ $testevent->end_date }}
{{ $testevent->event_url }}
{{ $testevent->master_key }}
@if(!empty($getsettings_details) && $getsettings_details->is_id_proof_required == 1)
@endif

@if($testevent->window_proctoring)
{{ $testevent->no_of_retries }}
@endif
{{ $testevent->ip_white_list }}
@if($testevent->is_custom_form==1)
@if($testevent->custom_choice == 1)
Custom Form Fields :
@foreach($testevent->customform as $customfield)
Label:
{{ $customfield->field_name}}
@if($customfield->field_type == 1) @elseif($customfield->field_type == 2) @elseif($customfield->field_type == 3) @endif
@if($customfield->field_type == 3)
@foreach($customfield->customOptions as $option) {{ $option->option_name }} @endforeach
@endif
@endforeach
@elseif($testevent->custom_choice==2)
Entity:{{ $testevent->getGenericGroupForm? $testevent->getGenericGroupForm->name : '---' }}
@endif
@endif
@if($testevent->is_feedback_form)
@php $jj =1; @endphp @foreach($testevent->feedback as $feedback)
Q{{$jj}}.
{{ $feedback->question }}
@php $ii = 1; @endphp @foreach($feedback->feedbackFormOptionDetails as $option)
{{ $ii }}.
{{ $option->options }}.
@php $ii++; @endphp @endforeach
@php $jj++; @endphp @endforeach
@endif
@endsection