@lang('Order Summary')
@php
$subtotal = 0;
@endphp
@foreach ($cartItems as $cartItem)
@php
$subtotal +=
$cartItem->price + $cartItem->buyer_fee + $cartItem->extended_amount;
@endphp
-
{{ @$cartItem->title }}
{{ gs('cur_sym') }}
{{ showAmount($cartItem->price + $cartItem->buyer_fee + $cartItem->extended_amount, currencyFormat: false) }}
@endforeach
-
@lang('Subtotal')
{{ gs('cur_sym') }}{{ showAmount($subtotal, currencyFormat: false) }}
@if ($isCoupon)
-
@lang('Discount')
{{ gs('cur_sym') }}0
@endif
@if ($isCoupon)
@endif
@lang('Total')
{{ gs('cur_sym') }}{{ showAmount($subtotal, currencyFormat: false) }}