@extends('layout.layout') @section('content')
@foreach ($questions as $question) @php $score = $question->answers->last()->score ?? 0; $comment = $question->answers->last()->comments ?? ''; @endphp @endforeach
Question Score (0-5) Comment
{{ $question->question }} {{ $score }} {{ $comment }}
Additional Comments (if any): {{ $existingComment ?? '' }}
@endsection