@foreach($ticket->comments as $comment)
{{ $comment->owner->name }} @lang('Added a comment') {{ $comment->created_at->diffForHumans() }}
@if($updating && $comment->id === $selectedComment->id)
{{ $this->form }}
@else
{!! $comment->content !!}
@endif @if( $comment->owner_id === auth()->user()->id && ( !$updating || $comment->id !== $selectedComment?->id ) )
|
@endif
@endforeach