@extends('layouts.master') @section('title', $category->seo_title) @section('meta_description', $category->seo_description) @section('canonical', route('blog.category', $category)) @section('content')

Blog Category

{{ $category->name }}

{{ $category->description ?: 'Explore the latest articles in this category.' }}

@forelse($posts as $post)
@include('frontend.blog.partials.card')
@empty
No posts found in this category.
@endforelse
{{ $posts->links() }}
@include('frontend.blog.partials.sidebar')
@endsection