| {{ $product->product_name }} | |
|
@if($product->offered_price)
RM{{ number_format($product->sell_price, 2) }} RM{{ number_format($product->sell_price, 2) }}/Each @endif |
|
| Cart Items | Qty | Subtotal | @foreach ($cartItems as $cartItem)
|---|---|---|
| {{ $cartItem->product_name }} | {{ $cartItem->product_quantity }} | RM{{ number_format($cartItem->product_price * $cartItem->product_quantity, 2) }} |
| Total | RM{{ number_format($cartTotalAmount, 2) }} | |