@extends('frontend.layout.app') @section('content')
| Cart Subtotal | ₹{{ number_format($cartSubtotal, 2) }} |
| Product Discounts |
-₹{{ number_format($totalProductDiscount, 2) }}
@foreach ($productDiscountsDetail as $pd)
{{ $pd['name'] }}:
{{ rtrim(rtrim(number_format($pd['percent'], 2), '0'), '.') }}%
(₹{{ number_format($pd['value'], 2) }})
@endforeach
|
| Coupon Discount |
-₹{{ number_format($couponDiscount, 2) }}
Coupon {{ session('applied_coupon') }} applied Remove |
| Order Total | ₹ {{ number_format($orderTotal, 2) }} |