@foreach ($products as $product) @php $discount = 0; if ($product->price > 0 && $product->price != $product->discounted_price) { $discount = round( (($product->price - $product->discounted_price) / $product->price) * 100, ); } @endphp

{{ $product->name }} - {{ $product->variant }}

₹{{ $product->discounted_price }} @if ($product->price != $product->discounted_price) ₹{{ $product->price }} @endif
@if (!array_key_exists($product->slug, $cart_product_slugs)) @else
@endif
@endforeach
{!! $products->links() !!}
@push('scripts') @endpush