@extends('user.user_dashboard') @section('home')
Quick Quiz
Enhanced Study / Quick Quiz
{{-- Objective Questions --}}
{{ $study->chapter_title }}
Test Your Understanding

Answer short objective questions based on this chapter. This helps reinforce key concepts before moving forward.

  • • Multiple choice
  • • Instant feedback

Quick Quiz
@csrf @foreach ($questions as $index => $question)
{{ $index + 1 }}. {{ $question->question }}
@php $options = [ 'A' => $question->option_a, 'B' => $question->option_b, 'C' => $question->option_c, 'D' => $question->option_d, ]; @endphp @foreach ($options as $key => $value)
@endforeach
@endforeach
{{-- end Objective Questions --}}
@endsection