@extends($activeTemplate . 'layouts.frontend') @section('content')
@csrf
@foreach ($cartItems as $cartItem) @php $isCampaignProduct = $cartItem->product->campaignProduct?->exists(); @endphp
{{ @$cartItem->title }}
@lang('Category') : {{ @$cartItem->category }}
is_extended)>
{{ gs('cur_sym') }} {{ showAmount($cartItem->price + $cartItem->buyer_fee + $cartItem->extended_amount, currencyFormat: false) }}
@endforeach
@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) }}
@endsection @push('style') @endpush @push('script') @endpush