Cart List You can choose which products in the cart to checkout.
{{-- Check if the cart is empty --}} @if($carts->isEmpty())

Your cart is empty. Please add items to the cart before proceeding.

@else
@csrf
@foreach ($carts as $cart) @endforeach
Image Product Name Price Per Unit Quantity Price Amount
{{ $cart->product->product_name }} {{ $cart->product->product_name }} RM {{ number_format($cart->product->product_selling_price, 2) }}
RM {{ number_format($cart->product->product_selling_price * $cart->quantity, 2) }}
Total Amount: RM 0.00
Proceed to Checkout
@endif