@csrf

Checkout

Customer: {{ auth()->user()->name }}

Contact: {{ auth()->user()->contact_number }}

Email: {{ auth()->user()->email }}

Plasticware Logo
@foreach($cartItems as $item) @endforeach
Product Quantity Price (RM) Amount (RM)
{{ $item->product->product_name }} {{ $item->quantity }} {{ number_format($item->product->product_selling_price, 2) }} {{ number_format($item->quantity * $item->product->product_selling_price, 2) }}
Total RM {{ number_format($totalAmount, 2) }}
@error('payment_type')
{{ $message }}
@enderror
CANCEL Place Order