@extends('layouts.main_dashboard.app') @php($routePrefix = auth()->user()?->usesStaffPortal() ? 'teacher' : 'admin') @section('styles') @endsection @section('title', __('dashboard.All Quiz Questions') @section('page_heading', __('dashboard.All Quiz Questions')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.Add Questions') }} @endsection @section('content')

{{ __('dashboard.All Quiz Questions for') }} "{{ $quiz->title }}"

@if($quizQuestions->isEmpty())
{{ __('dashboard.No data found') }}
{{ __('dashboard.There are no questions in this quiz yet.') }}
{{ __('dashboard.Add Questions') }}
@else

{{ __('dashboard.Drag and drop the rows to reorder the questions.') }}

@foreach($quizQuestions as $quizQuestion) @endforeach
{{ __('dashboard.Move') }} {{ __('dashboard.Question') }} {{ __('dashboard.Lesson') }} {{ __('dashboard.Difficulty Level') }} {{ __('dashboard.Score') }} {{ __('dashboard.Actions') }}
{{ $quizQuestion->question->question_text }}
{{ $quizQuestion->question->lesson->title }} {{ $quizQuestion->question->difficultyLevel->name }} {{ $quizQuestion->score }} {{ __('dashboard.Actions') }}
@endif
@endsection @section('scripts') @endsection