@extends('layouts.app') @section('content') @if ($randomQuestion)
@csrf @foreach ($randomQuestion as $key => $question)

{{ $question->question_text }}

@foreach ([1, 2, 3, 4, 5, 0] as $value) @endforeach
@if(count($randomQuestion) == 1) @else @if($key === 0) @elseif($key === count($randomQuestion) - 1) @else @endif @endif
@endforeach
@else

No questions found for the specified attribute.

@endif @endsection