{{ $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)
{{ $option }}
@endforeach
กรุณาให้เหตุผล:
เนื่องจากคุณให้คะแนนต่ำกว่าเกณฑ์ที่กำหนด กรุณาแจ้งเหตุผลเพื่อให้เราสามารถปรับปรุงบริการได้ดีขึ้น
*
เหตุผลที่ให้คะแนนต่ำ:
@elseif($question['type'] === 'multiple_choice')
@foreach($question['options'] as $optionIndex => $option)
{{ $option }}
@endforeach
@elseif($question['type'] === 'yes_no' || $question['type'] === 'boolean')
ใช่
ไม่ใช่
@else
@endif @if($question['help_text'])
{{ $question['help_text'] }}
@endif
@endforeach @if($hasSuggestions)
ข้อเสนอแนะเพิ่มเติม
@endif
ส่งคำตอบ