{{ __('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