@extends('layouts.app') @section('title', "$category->name - Suplementos Store") @section('content')

{{ $category->name }}

@if($category->description)

{{ $category->description }}

@endif

{{ $products->total() }} produtos disponíveis

@if($childCategories->count() > 0)
Refinar por: @foreach($childCategories as $child) {{ $child->name }} ({{ $child->products_count }}) @endforeach
@endif
@if($products->count() > 0)
@foreach($products as $product) @include('partials.product-card', ['product' => $product]) @endforeach
@if($products->hasPages())
{{ $products->appends(request()->except('page'))->links() }}
@endif @else

Nenhum produto encontrado

Esta categoria ainda não possui produtos.

Ver Outras Categorias
@endif
@endsection