@extends('layouts.front.front') {{-- main content --}} @section('content') {{-- Products --}} Products Products @if($products->isNotEmpty()) Filter Filter by Product Type @if($all_product_types->isNotEmpty()) @foreach($all_product_types as $product_type) {{$product_type->name}} @endforeach @endif Categories @if($all_product_categories->isNotEmpty()) @foreach($all_product_categories as $category) {{$category->name}} @endforeach @endif Brand @if($all_brands->isNotEmpty()) @foreach($all_brands as $brand) {{$brand->name}} @endforeach @endif Apply @if(request()->filter) Clear Filter @endif Found {{$total_count}} results Sort by: Select Option product name Newest A to Z @if($products->isNotEmpty()) @foreach($products as $product) {{$product->name}} {{$product->category->name}} {{$product->sub_title}} {!! html_entity_decode($product->medium_description) !!} Quick View Documentation Specifications {{$product->name}} @if($product->specification) {!! html_entity_decode($product->specification->body) !!} @endif @endforeach @else Product Not Found @endif {{ $products->links() }} @else No Product Found! @endif @endsection @push('js') @endpush
Product Not Found