@section('title', __('Cart'))
{{ __('Cart Items') }}
| {{ __('Product') }} | {{ __('Price') }} | {{ __('Options Price') }} | {{ __('Qty') }} | {{ __('Subtotal') }} | ||
|---|---|---|---|---|---|---|
|
|
{{ $cartItem['name'] }} {{ $cartItem['extra_data']['selectedOptionFlatten'] ?? '' }} |
{{ currencyFormat($cartItem['sell_price']) }} | {{ currencyFormat($cartItem['options_total_price'] ?? 0.0) }} |
{{ $cartItem['quantity'] }}
|
{{ currencyFormat(($cartItem['sell_price'] + ($cartItem['options_total_price'] ?? 0)) * $cartItem['quantity']) }} |
| {{ __('Product') }} | {{ __('Qty') }} | |
|---|---|---|
| {{ $cartItem['name'] }} |
{{ $cartItem['quantity'] }}
|
{{ __('Checkout Summary') }}
{{-- subtotal --}}{{ __('Subtotal') }}
{{ currencyFormat($subtotal) }}
{{ __('Discount') }}
{{ currencyFormat($discount) }}
{{ __('Total') }}
{{ currencyFormat($total) }}