@extends('frontend.layouts.app') @section('title', $title) @section('description', $description) @section('content') @include('frontend.layouts.breadcrumb', ['title' => $category->name])
Blog Category

{{ $category->name }}

{{ $category->description ?: 'Latest news and updates in ' . $category->name }}

@forelse($news as $article)
@include('frontend.partials.news-card', ['article' => $article])
@empty

No articles found

No articles have been published in this category yet.

View All News
@endforelse
{{ $news->appends(request()->query())->links() }}
@include('frontend.partials.newsletter') @endsection