Response from {{ $responses->first()->user->name ?? 'Anonymous' }} - {{ $responses->first()->submitted_at }}
@foreach ($responses as $response) @php $question = $questions[$response->question_id] ?? null; $decodedAnswers = json_decode($response->answers, true); @endphp @if ($question){{ $question->question_text }}
@if ($question->type == 'dropdown') @elseif (in_array($question->type, ['multiple_choice', 'checkbox']))
@foreach (json_decode($question->options) as $option)
@endforeach
@else
{{ is_array($decodedAnswers) ? implode(', ', $decodedAnswers) : $decodedAnswers }}
@endifQuestion not found for ID: {{ $response->question_id }}
@endif @endforeach