@error('newComment')
{{ $message }}
@enderror
Add Comment
@forelse($comments as $comment)
{{ $comment->author?->name_first }} {{ $comment->author?->name_last }} {{ ($comment->comment_created_at ?? $comment->created_at)?->format('d/m/Y H:i') }} @if($comment->updated_at && $comment->created_at && $comment->updated_at->gt($comment->created_at)) (edited) @endif
@if($editingId === $comment->id) @error('editingText')
{{ $message }}
@enderror
Save Cancel
@else

{{ $comment->comment_text }}

@endif
@empty

No comments yet.

@endforelse