@extends('front.layout.app') @section('title', 'Single Product') @section('content')

{{ 'Shop' ?? '' }}

Filtered By Price
-
{{--
-
--}}
Top Rated Products
@foreach($topRatedProducts as $product)
{{ $product->product_name }}
{{ $product->name ?? 'Anoynmus' }}

${{ number_format($product->price, 2) }}

@endforeach
Showing 1-9 Results
  • @if($products->count() > 0) @php $totalPages = $products->lastPage(); $currentPage = $products->currentPage(); @endphp 9/ 12/ 18/ 24 @endif
  • Sort by

    {{--
    --}}
    @include('front.partials.product-list', ['products' => $products])
    {{--
    @forelse ($products as $product)
    {{ $product->name }}

    {{ $product->name }}

    ${{ number_format($product->price, 2) }}
    @empty

    No products found

    @endforelse
    --}} @if($products->count() > 0) @else @endif
    @endsection @section('scripts') @endsection