@foreach ($carts as $cart)
{{ $cart->ad->title }} ({{$cart->quantity}} Items)
@if ($cart->ad->isEnabledOffer() && $cart->ad?->offer_price)
{{ currencyToPointConversion(formatPriceWithCurrency($cart->ad?->offer_price * $cart->quantity) ) }}
@else
{{ currencyToPointConversion(formatPriceWithCurrency($cart->ad->price * $cart->quantity) ) }}
@endif
@endforeach
{{ __('messages.t_delivery_charges') }}
{{ __('messages.t_free_charge') }}
{{ __('messages.t_subtotal') }}
{{ currencyToPointConversion(formatPriceWithCurrency($subtotalAmount) ) }}
@if(!isEnablePointSystem() && isECommerceTaxOptionEnabled() && is_ecommerce_active())
{{ __('messages.t_tax') }}
{{ currencyToPointConversion(formatPriceWithCurrency($tax) ) }}
@endif
{{ __('messages.t_total_amount') }}
{{ currencyToPointConversion(formatPriceWithCurrency($totalAmount)) }}
@if ($this->defaultCurrency && $this->isDifferentRate)
{{ __('messages.t_total_including_exchange_rate') }}
{{formatPriceWithCurrency($convertedTotal) }}
@endif
{{--
{{ __('messages.t_total_amount') }}
{{ currencyToPointConversion(formatPriceWithCurrency($convertedTotal)) }}
--}}