@extends('layouts.frontend') {{-- Or your module's frontend layout if different --}} @section('title', 'Blog - ' . setting('site_name')) @section('meta_description', 'Read our latest articles and updates.') @section('content')

Our Blog

@if($posts->isEmpty())

No blog posts found.

@else
@foreach($posts as $post) @include('blog::frontend.partials._post_card', ['post' => $post]) @endforeach
{{ $posts->links() }}
@endif
@endsection