Loading...
@if ($message = Session::get('success')) @endif
@foreach ($products as $key => $product)
{{ $product->product_name }}
{{ $product->product_name }}
@if($product->offered_price)

RM{{ number_format($product->sell_price, 2) }} RM{{ number_format($product->offered_price, 2) }}

RM{{ number_format($product->offered_price, 2) }}/Each @else

RM{{ number_format($product->sell_price, 2) }}

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