@extends('admin.crud.callforproposal.application.base') @section('subcontent')
@foreach ($juryComments as $juryComment) @php $reviewerName = optional(optional($juryComment->reviewer)->user)->name ?? 'Jury introuvable'; $selectionName = $juryComment->applicationSelection->selection->title; @endphp

{{ $reviewerName }} lors de {{ $selectionName }}

{!! nl2br(e($juryComment->comments)) !!}
@endforeach
@endsection