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