@forelse($posts as $post)
@if($posts->hasPages())
{{-- Meta row --}}
@empty
{{ \Carbon\Carbon::parse($post->post_created_at)->format('d M Y') }}
@if($post->category)
{{ $post->category->name }}
@endif
{{-- Title --}}
{{ $post->title }}
{{-- Excerpt --}}{{ Str::limit(strip_tags($post->description), 200) }}
{{-- Tags + Read more --}}
@foreach($post->tags as $tag)
#{{ $tag->tag_name }}
@endforeach
Read more →
No posts found.
@endforelse
{{ $posts->links() }}
@endif