@include('layouts.front.menu-superior')
@include('layouts.front.banner-principal')
@include('layouts.front.menu-banner')
@include('layouts.front.banner-parceiros')
@if($cat->count() > 0)
@foreach($cat as $categoria)
@if ($categoria->products->count() > 0 )
@include('front.products.product-list', ['products' => $categoria->products->where('status', 1)->take(5)])
@endif
@endforeach
@endif