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