ESMT

{{ $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) @endforeach
@else @endif
@endforeach