@foreach ($comments as $comment)
@svg('assets/images/icons/user.svg', 'text-gray')
{{ $comment->author_name }}
{{--
@svg('assets/images/icons/like.svg') @if ($comment->like_count > 0) {{ $comment->like_count }} post like @endif
--}}
@svg('assets/images/icons/reply.svg')
{{ $comment->created_at }}
{!! nl2br($comment->content) !!}
@include('front.items.comments-display', ['comments' => $comment->approvedReplies])
@endforeach