@props([ 'post' => null, 'size' => 'large', 'showExcerpt' => true, 'showCategory' => true, 'showAuthor' => false, 'showDate' => true, 'imageHeight' => null, 'class' => '', ]) @if($post)
{{ $post->title }} @if($post->is_video) @endif @if($post->is_breaking) জরুরি @endif @if($showCategory && $post->category) {{ $post->category->name_bn }} @endif

{{ $post->title }}

@if($showExcerpt && $post->excerpt)

{{ Str::limit(strip_tags($post->excerpt), 150) }}

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