@php $scaleItems = $scaleItems ?? [ ['score' => 1, 'label' => 'Sangat Tidak Setuju'], ['score' => 2, 'label' => 'Tidak Setuju'], ['score' => 3, 'label' => 'Netral'], ['score' => 4, 'label' => 'Setuju'], ['score' => 5, 'label' => 'Sangat Setuju'], ]; @endphp
{{ $eyebrow ?? 'Bagian kuesioner' }}

{{ $title }}

{{ $description }}

@forelse ($questions as $index => $question)
{{ ($startNumber ?? 1) + $index }} {{ $question->question_text }}
@foreach ($scaleItems as $item) @endforeach
@empty
Pertanyaan belum tersedia.
@endforelse