@extends('layout.index') @section('title', 'Verification User List') @section('content')
@if ($message = Session::get('success'))
@elseif ($message = Session::get('error'))
@endif
{{--
Sr. No Question Status Assign country season Actions
No Record Found
--}}
@if(!empty($aQuestion)) @foreach ($aQuestion as $i => $val) {{-- --}} @endforeach @else @endif
Sr. No Question Status Assign country season Actions
{{ $i + 1 }} {{ $val->question }}
isActive) && $val->isActive ? 'checked' : '' }} onclick="change_status(event.target, {{ $val->id }});" />
@if(!empty($aSelectedQuestion) && !empty($aMasterCountry)) @foreach ($aSelectedQuestion as $selected) @if ($val->id == $selected->questionId && isset($aMasterCountry[$selected->countryId])) @php $key = $aMasterCountry[$selected->countryId] . '-' . $selected->season; @endphp @endif @endforeach @endif @if(!empty($aData)) @foreach ($aData as $index => $item) @if($index==$val->id) @php $key = $item['country'] . '-' . $item['season']; @endphp @endif @endforeach @endif
No Record Found
{{ $Paginator }}
@endsection