@section('page_slug', 'category')
@section('page_title', $category->name)
@extends('layout')
@section('content')
{{$category->name}}
@if($category->slug == 'sneakers')
@endif
@if(!empty($filters))
@endif
@if(!empty($products))
@if($products->count() > 0)
@include('shop.product-list', ['products' => $products,'listAlign' => 'text-left'])
@else
Aucun produit ne correspond à votre recherche
@endif
@endif
@endsection