{{ $category->name }}

@if ($category->description)

{{ $category->description }}

@endif @if ($subcategories->isNotEmpty())
@foreach ($subcategories as $subcategory) {{ $subcategory->name }} @endforeach
@endif @include('catalog.partials.filters') @if ($products->isEmpty())

No hay productos que coincidan con estos filtros.

@else
@foreach ($products as $product) @include('catalog.partials.product-card', ['product' => $product]) @endforeach
{{ $products->links() }}
@endif