{{ $survey->Survey_Name }}

{{ $survey->Survey_Description }}

@foreach($questions as $index => $question)
{{ $index + 1 }} {{ $question['text'] }} @if($question['required']) * @endif
@if($question['type'] === 'rating')
@foreach($question['options'] as $optionIndex => $option) @endforeach
@elseif($question['type'] === 'multiple_choice')
@foreach($question['options'] as $optionIndex => $option) @endforeach
@elseif($question['type'] === 'yes_no' || $question['type'] === 'boolean')
@else @endif @if($question['help_text']) {{ $question['help_text'] }} @endif
@endforeach @if($hasSuggestions)
ข้อเสนอแนะเพิ่มเติม
@endif