@include('front.partials.filters',['category'=>$category,'filter_brands'=>$category->brands])
@if(count($category_products))
@if(session()->get('view')=="row")
@include('front.partials.row_view',['products'=>$category_products])
@else
@include('front.partials.vertical_view',['products'=>$category_products])
@endif
@else
{{__('No products found , please filter again')}}
@endif