@extends('layouts.blog') @section('title', $category->name) @section('content')

Category: {{ $category->name }}

@if($category->description)

{{ $category->description }}

@endif
@forelse ($posts as $post)
@if($post->banner_url) {{ $post->title }} @endif

{{ $post->title }}

{{ $post->excerpt }}

@empty

No posts found in this category.

@endforelse
{{ $posts->links() }} @endsection