Questions for "{{ $quiz->title }}"

Questions ({{ $questions->total() }})
@if($questions->count() > 0) @endif
@if($questions->count() > 0)
@foreach($questions as $index => $question) @endforeach
# Status Actions
{{ $question->order }}
{{ Str::limit($question->question_text, 100) }}
@if($question->metadata['feedback'] ?? null) {{ Str::limit($question->metadata['feedback'], 50) }} @endif
{{ $questionTypes[$question->type] ?? $question->type }} {{ $question->score_points }}
@if($question->is_active) Active @else Inactive @endif @if($question->is_required) Required @endif
Showing {{ $questions->firstItem() }} to {{ $questions->lastItem() }} of {{ $questions->total() }} questions
{{ $questions->links() }}
@else
No questions found

@if($search || $typeFilter) No questions match your current filters. @else Get started by adding your first question to this quiz. @endif

@if(!$search && !$typeFilter) Add First Question @endif
@endif
@push('scripts') @endpush