@extends('store.layouts.app') @section('title', $category->name) @section('meta_description', $category->description ?? 'Products in ' . $category->name) @section('content')

{{ $category->name }}

@if($category->description)

{{ $category->description }}

@endif
{{-- Filters & Sort --}}
Sort by:
{{ $products->total() }} products
@if($products->isEmpty())

No products in this category

Check back later for new products.

Browse Categories
@else
@foreach($products as $product) @include('store.components.product-card', ['product' => $product]) @endforeach
{{ $products->withQueryString()->links() }}
@endif
@endsection