{{ $post->created_at->format('d') }}
{{ $post->created_at->format('M') }}
{{ $post->comments_count ?? 0 }}
@include('modules.blog.frontend.partials.homepage-post-media', [
'post' => $post,
'mediaMinHeight' => '220px',
'imageClass' => 'card-img-top',
])
{{ $post->category->name ?? 'business' }}
by {{ $post->user->name ?? 'Admin' }}
{{ $post->title }}
{{ Str::limit($post->excerpt ?? $post->content, 100) }}
{{ __('Leer más') }}