@extends('layouts.site') @section('title', 'Blog - Visit Sri Lanka 360') @php $heroBg = asset('images/hero/blog-hero.jpg'); // change to your blog hero image if you want @endphp @section('content') {{-- HERO (same style as Tours) --}}
Travel Inspiration

Sri Lanka Blog

Guides, tips, itineraries & hidden gems to plan your perfect trip.

{{-- SEARCH BAR (nice premium bar like filter) --}}
@if(!empty($q)) Reset @endif
@if(!empty($q))
Showing results for: "{{ $q }}"
@endif
{{-- LIST --}}

Latest Articles

Showing {{ method_exists($posts, 'total') ? $posts->total() : $posts->count() }} articles

@if($posts->count())
@foreach($posts as $post) @php $img = !empty($post->cover_image) ? asset('storage/' . ltrim($post->cover_image, '/')) : 'https://placehold.co/1200x800'; $date = $post->published_at ? \Carbon\Carbon::parse($post->published_at)->format('M d, Y') : null; @endphp
{{ $post->title }}
@if($date)
{{ $date }}
@endif
{{ $post->title }}
@if(!empty($post->excerpt))

{{ $post->excerpt }}

@else

Read this travel story and get tips for your Sri Lanka trip.

@endif
Read More
@endforeach
{{ $posts->links() }}
@else
No blog posts yet

Add your first post from the admin panel.

@endif
@endsection