@if ($message = Session::get('success'))

{{ $message }}

@endif
Loading...
@if($cartTotalQty < 1)

Cart

Your cart is empty 😢


Continue shopping
@else
Price
Quantity
Total
@foreach ($cartItems as $item)
{{ $item->product_name }}
{{ $item->product_name }} {{--
RM{{ number_format($item->product->sell_price,2) }}
--}}
RM{{ number_format($item->product->sell_price,2) }} RM{{ number_format($item->product_price,2) }}
RM{{ number_format($item->product_price,2) }}
RM{{ number_format($item->total_price,2) }}
@endforeach
@foreach ($cartItems as $item)
{{ $item->product_name }}
{{ $item->product_name }} {{--
Medium
--}}
RM{{ number_format($item->product->sell_price,2) }} RM{{ number_format($item->product_price,2) }}
@endforeach

Subtotal: RM{{ number_format($cartTotalAmount,2) }}
{{-- Shipping & taxes calculated at checkout --}}


@if($cartTotalQty > 0) @endif Checkout

Subtotal: RM{{ number_format($cartTotalAmount,2) }}
{{-- Shipping & taxes calculated at checkout --}}


@if($cartTotalQty > 0) @endif Checkout Continue shopping
@endif