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

@foreach ($promotions as $promotion)
{{ $promotion->name }} - {{ $promotion->duration }} days {{ formatPriceWithCurrency($promotion->price)}}
@endforeach
Ad Count {{count($selectedAdSlugs)}}
{{ __('messages.t_subtotal') }} {{ formatPriceWithCurrency($subtotal)}}
{{ __('messages.t_tax') }} {{ formatPriceWithCurrency($tax)}}
{{ __('messages.t_total') }} {{ formatPriceWithCurrency($total)}}
{{-- Exchange Rate --}} @if ($this->defaultCurrency && $this->isDifferentRate)
{{ __('messages.t_total_including_exchange_rate') }} {{ formatPriceWithCurrency($this->convertedTotal) }}
@endif

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

@if(count($this->initializePaymentOptions()) >= 1)
{{ $this->form }}
@if ($currentPayment) @endif @else @include('components.empty-payment') @endif