<li class="data-comment" data-comment-id="{{ $comment->id }}">
    <div class="single-comment">
        <div class="user-avatar ht-bgcover"
             style="background-image: url('{{ $comment->account->image }}');"></div>
        <div class="comment-main">
            <h4 class="user-title">{{ $comment->account->name }}</h4>
            <div class="comment-content">{{ $comment->content }}</div>

        </div>
        @if($comment->images)
            @php $images = json_decode($comment->images, true); @endphp


                <div class="comment-attachment">
                    @foreach($images as $image)
                    <a href="#" data-fancybox="gallery" rel="gallery01"><img
                                src="{{ '/files/'.$image }}"></a>
                    @endforeach
                </div>

            @endif
            <div class="comment-meta">
            <span>{{ $comment->created_at->diffForHumans() }}</span>
        </div>
    </div>
</li>