{{ __('Question Management') }}

Total Questions
{{ $stats['total'] }}
Active Questions
{{ $stats['active'] }}
Multiple Choice
{{ $stats['by_type']['multiple_choice'] ?? 0 }}
Scale Questions
{{ $stats['by_type']['scale'] ?? 0 }}

Questions by Category

@foreach($stats['by_category'] as $category => $count)
{{ $category }} {{ $count }} questions
@endforeach

Bulk Actions

@forelse($questions as $question) @empty @endforelse
Order Question Category Type Difficulty Weight Status Actions
{{ $question->order }}
{{ Str::limit($question->question_text, 60) }}
@if($question->explanation)
Has explanation
@endif
{{ $question->category->name ?? 'No Category' }} {{ $question->getTypeLabel() }} {{ ucfirst($question->difficulty_level) }} {{ $question->weight }} {{ $question->is_active ? 'Active' : 'Inactive' }}
View | Edit |
@csrf
|
@csrf @method('DELETE')

No questions found

Get started by creating your first question

Create Question
@if($questions->hasPages())
{{ $questions->links() }}
@endif