{{ $no }}

{{ $question->question_text }}

@if($question->question_type === 'rating')
@for($r = 1; $r <= 5; $r++) @endfor
😞 Sangat Buruk 😊 Sangat Baik
@elseif($question->question_type === 'text') @elseif($question->question_type === 'yes_no')
@elseif($question->question_type === 'multiple_choice') {{-- Cek options tidak null dan tidak kosong --}} @if($question->options && count($question->options) > 0)
@foreach($question->options as $opt)
@endforeach
@else {{-- Fallback jika options kosong --}}
Pilihan jawaban belum diisi. Hubungi Supervisor.
@endif @else {{-- Fallback tipe tidak dikenal --}} @endif {{-- Kolom Note --}}