@extends('front.layout') @section('title') {{$category->name}} @endsection @section('css') @endsection @section('content')

{{$category->name}}

{{__('What are you looking for?')}}
  • {{--
    --}}
  • Filters
@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
    {!! $category_products->appends(['categories'=>request()['categories'],'brands'=>request()['brands'],'prices'=>request()['prices']])->links() !!}
@else

{{__('No products found , please filter again')}}

@endif
@endsection @section('scripts') @endsection