{{ $survey->title }}
ESMT Berlin
@php($title = strtolower($survey->title ?? '')) @if(strpos($title, 'group work') !== false)
Give us some feedback on your group work!
@elseif(strpos($title, 'session') !== false)
How confident do you feel to do the following?
@endif
@csrf @foreach($survey->questions as $idx => $question)
{{ $question['text'] }}
@if(($question['type'] ?? 'likert') === 'likert')
@foreach([1, 2, 3, 4, 5] as $value)
{{ $value }}
@if($value === 1) Strongly Disagree @elseif($value === 2) Disagree @elseif($value === 3) Neutral @elseif($value === 4) Agree @elseif($value === 5) Strongly Agree @endif
@endforeach
@else
@endif
@endforeach
Submit Survey