1
@php $display = 0 ; $nbrcourrant = 0 ; @endphp @foreach( $categoryQuizs as $categoryQuiz)
@csrf @foreach($categoryQuiz->quizs as $quiz ) @php $nbrcourrant ++; @endphp
{{ app()->getLocale() == "en" ? $categoryQuiz->title_en : $categoryQuiz->title_ar }}
{{ app()->getLocale() == "en" ? $quiz->quiz_en : $quiz->quiz_ar }}
@foreach( $quiz ->quizAnswers as $quizAnswer )
id , $list_quiz_answer_id)) checked @endif />
id , $list_quiz_answer_id)) class="selected wrong" @endif > {{ app()->getLocale() == "en" ? $quizAnswer->answers_en : $quizAnswer->answers_ar }}
@endforeach
@if($nbrcourrant < $countTotalQuiz)
Next question
@else
Save
@endif
@php $display = 1 ; @endphp @endforeach
@endforeach