Cart
| {{ __('Product') }} | {{ __('Price') }} | {{ __('Quantity') }} | {{ __('Subtotal') }} | {{ __('Action') }} |
|---|---|---|---|---|
| {{ currency($cart->product ? $cart->product->finalPrice : 0) }} |
|
{{ currency($itemTotal) }} |
{{ __('Cart Totals') }}
{{ __('Subtotals') }}
{{ currency($subtotal) }}
{{ __('Coupon offer') }}
@php $type = session('type'); $discountAmount = session('discount_amount', 0); $discount = 0; if ($subtotal) { if ($type === 'percentage') { $discount = ($subtotal * $discountAmount) / 100; } else { $discount = $discountAmount; } } $grandTotal = $subtotal - $discount; @endphp (-){{ currency($discount) }}
{{ __('Total') }}
{{ currency($grandTotal) }}