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

Category: {{ $category->name }}

@forelse($category->posts()->orderBy('created_at', 'DESC')->get() as $post) @empty

No posts for this category yet.

@endforelse



@include('includes.sidebar')
@endsection