@if ($fetch_products->count()) @foreach ($fetch_products as $product)
Product

{{ $product->product_name }}

@if ($product->product_rating_average != 0)
@php $avg_rating_per = (($product->product_rating_average) / 5) * 100; @endphp
@endif
{{ round((($product->selling_price) * 1.1) * (($product->gst + 100) / 100)) }}
@endforeach @else
No Products Found
@endif

Showing {{ $fetch_products->firstItem() }}–{{ $fetch_products->lastItem() }} of {{ $fetch_products->total() }} Products

{{ $fetch_products->withQueryString()->links('pagination::bootstrap-4') }}