@extends('layouts.app')
@section('title', $category->name . ' — ' . settings('site_title', 'Ahmad Hasan Dynamics Musings'))
@section('content')
Category: {{ $category->name }}
@if($category->description)
{!! $category->description !!}
@endif
@foreach($posts as $post)
@include('partials.post-card', ['post' => $post])
@endforeach
{{ $posts->links() }}
@endsection