@extends('layouts.front.front') {{-- main content --}} @section('content')
{{--

Products

--}}
@if($products->isNotEmpty())

Filter by

@if($all_product_types->isNotEmpty()) @foreach($all_product_types as $product_type)
@endforeach @endif

@if($all_product_categories->isNotEmpty()) @foreach($all_product_categories as $category)
@endforeach @endif

@if($all_brands->isNotEmpty()) @foreach($all_brands as $brand)
@endforeach @endif
@if(request()->filter) Clear Filter @endif
Found {{$total_count}} results
@if($products->isNotEmpty()) @foreach($products as $product)
product-image
{{$product->name}}
{{$product->category->name}} {{$product->sub_title}}
{!! html_entity_decode($product->medium_description) !!}
@endforeach @else

Product Not Found

@endif
@else

No Product Found!

@endif
@endsection @push('js') @endpush