@extends('layouts.app') @section('content')
@include('partials._categories-menu')

{{str_replace("-"," ",$main)}} / {{str_replace("-"," ",$sub)}}

@if(count($products)) @foreach($products->chunk(4) as $chunk)
@foreach($chunk as $product)
@include('partials._product-card',['product' => $product])
@endforeach
@endforeach @else

There is no product in this category yet

@endif
@endsection @section('js') @endsection