@php $countId = 1; $questionCount =1; @endphp @if (sizeOf($question_answers) > 0)
@csrf @foreach ($question_answers as $item)
{{ $questionCount++.'. ' }}{{ $item->question }}
@if ($item->question_type == 'radio') @php $item->ans_parameter = array_keys(json_decode($item->ans_parameter, true)); @endphp
@foreach ($item->ans_parameter as $ans_parameter)
id][]" }}" class="custom-control-input" value="{{ $ans_parameter }}">
@endforeach
@endif @if ($item->question_type == 'select') @php $item->ans_parameter = array_keys(json_decode($item->ans_parameter, true)); @endphp
@endif @if ($item->question_type == 'multiselect') @php $item->ans_parameter = array_keys(json_decode($item->ans_parameter, true)); @endphp
@endif
@endforeach
@else

No active question found. Please cotact with administrator

@endif