@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)
@endif
{{ $post->excerpt }}
@empty
No posts found in this category.
@endforelse
{{ $posts->links() }}
@endsection