@extends('layouts.app') @section('content')
← Back to Dashboard

ABOUT YOURSELF

@csrf @foreach($questions as $questionGroup) @php $question = $questionGroup->first(); $qs_id = $question->question_id; $emojiMap = [ '1' => '😭', '2' => '😕', '3' => '😐', '4' => '🙂', '5' => '🤩', ]; $visibleAnswers = $questionGroup->filter(fn($a) => $a->answer !== 'text' && $a->answer !== '6'); @endphp
@foreach($visibleAnswers as $ans) @endforeach
Question Option 1 Option 2 Option 3 Option 4 Option 5
{{ $question->question }}

{{ $question->question }}

@foreach($visibleAnswers as $ans) @endforeach
@foreach($questionGroup as $ans) @if($ans->answer === 'text' || $ans->answer === '6') @endif @endforeach
@endforeach
{{-- Submit button outside the loop, at the bottom of the form --}} {{-- Pagination Links --}} {{--
{{ $questions->links() }}
--}} @endsection @push('js') @endpush