<div class="itr-blog__single-post ht-depth-1">
    <div class="post__photo ht-rectangle ratio-32">
        <a href="{{ url('blog/'.str_slug($item->title).'-'.$item->id) }}" class="ht-inner bg-color-grey-200"><img
                    src="{{ $item->image_url }}" alt=""
                    class="ht-img-obj-cover"></a>
    </div>
    <div class="post__content">
        <h3 class="post__content__title"><a
                    href="{{ url('blog/'.str_slug($item->title).'-'.$item->id) }}">{{ $item->title }}</a></h3>
        <div class="post__content__meta ht-oneline">
            @if(!empty($item->category_first))
                <span><a href="{{ url('blog/danh-muc/'. $item->slug) }}">{{ $item->categories_text }}</a></span>
            @endif
            <span>{{ $item->created_at->format('d/m/Y') }}</span>
        </div>
        <div class="post__content__descr">{{ \Illuminate\Support\Str::words(strip_tags(html_entity_decode($item->content))) }}
        </div>
    </div>
</div>
