@extends('layouts/layout') @section('content')

Checkout Page


Account:
{{ $user->name }}


Delivery

@csrf
@foreach($cartItems as $item)
Product {{ $item->quantity }}
{{ $item->product->name }}
{{ $item->product_size }} / {{ $item->color_name }}
₹{{ number_format($item->product->price - $item->product->discount * $item->quantity, 2) }}
@endforeach
Subtotal ₹{{ number_format($subtotal, 2) }}
Shipping FREE

Total INR ₹{{ number_format($subtotal, 2) }}
@endsection