@props([ 'post' => null, 'layout' => 'vertical', 'showImage' => true, 'showCategory' => true, 'showDate' => true, 'imageSize' => 'medium', 'class' => '', ]) @if($post)
@if($showImage)
{{ $post->title }} @if($post->is_video) @endif
@endif
@if($showCategory && $post->category) {{ $post->category->name_bn }} @endif

{{ $post->title }}

@if($showDate) {{ $post->published_at->diffForHumans() }} @endif @if($post->views_count > 0) {{ number_format($post->views_count) }} @endif
@endif