@if($posts->isEmpty())

No Travel Guides Found

We couldn't find any articles matching your parameters. Try adjusting your query or filter.

@else @foreach($posts as $post)
{{ $post->title }} {{ $post->category->name }}
{{ $post->published_at ? $post->published_at->format('M d, Y') : $post->created_at->format('M d, Y') }} {{ $post->reading_time_minutes ?? 5 }} min read

{{ $post->title }}

{{ $post->summary }}

By {{ $post->blogAuthor->name ?? 'Kevron Editorial' }} Read Guide
@endforeach
{{ $posts->links() }}
@endif