{{ $post->title }}
@if($post->excerpt){{ \Illuminate\Support\Str::limit($post->excerpt, 150) }}
@endif
{{ $post->published_at ? $post->published_at->format('d M Y') : $post->created_at->format('d M Y') }}
{{ $post->user->name ?? 'CEGME' }}
@foreach($post->tags->take(3) as $tag)
{{ $tag->name }}
@endforeach
@endif