{{ __('messages.t_summary') }}

@foreach ($promotions as $promotion)
{{ $promotion->name }} - {{ $promotion->duration }} days {{config('app.currency_symbol').' '. \Number::format(floatval($promotion->price), locale: $paymentSettings->currency_locale) }}
@endforeach
Ad Count {{count($selectedAdSlugs)}}
{{ __('messages.t_subtotal') }} {{config('app.currency_symbol')}}{{ \Number::format(floatval($subtotal), locale: $paymentSettings->currency_locale)}}
{{ __('messages.t_tax') }} {{config('app.currency_symbol')}}{{ \Number::format(floatval($tax), locale: $paymentSettings->currency_locale)}}
{{ __('messages.t_total') }} {{ config('app.currency_symbol') }}{{ \Number::format(floatval($total), locale: $paymentSettings->currency_locale) }}
{{-- Exchange Rate --}} @if ($this->defaultCurrency && $this->isDifferentRate)
{{ __('messages.t_total_including_exchange_rate') }} {{ $this->getExchangeCurrencySymbol() }}{{ \Number::format(floatval($this->convertedTotal), locale: $paymentSettings->currency_locale) }}
@endif

{{ __('messages.t_choose_payment_label') }}

{{ $this->form }}
@if ($currentPayment) @endif