@section('title', __('Checkout'))
{{ __('Checkout') }}
{{ __('Delivery Address/Pickup, Time/Date, Payment Method and More') }}
| {{ __('Item/Product') }} | {{ __('Subtotal') }} |
|---|---|
| {{ $cartItem['name'] }} x {{ $cartItem['quantity'] }} | {{ currencyFormat(($cartItem['sell_price'] + ($cartItem['options_total_price'] ?? 0.0)) * $cartItem['quantity']) }} |
{{ __('Order Date') }}
{{ __('When do you want to schedule order for?') }}
{{ __('Delivery Address') }}
{{ __('Payment Methods') }}
{{ __('How do you want to pay for this order?') }}
{{ $paymentMethod->name }}
{{ __('Order Summary') }}
{{ __('Subtotal') }}
{{ currencyFormat($subtotal ?? 0.0) }}
{{ __('Discount') }}
{{ currencyFormat($discount) }}
{{ __('Delivery Fee') }}
{{ currencyFormat($delivery_fee) }}
{{ __('Tax') }}({{ $vendor->tax }}%)
{{ currencyFormat($tax) }}
{{ $fee['name'] }}
{{ currencyFormat($fee['amount']) }}
{{ __('Total') }}
{{ currencyFormat($total) }}