@extends('layouts.front-end.app')
@section('title', ' products')
@push('css_or_js')
@endpush
@section('content')
Sort by
Showing {{ $products->count() }} results
@if ($products->count() > 0)
@include('web-views.products.filtering_products', ['products' => $products])
@else
Product not found
@endif
@endsection
@push('script')
@endpush