{{ __('order.subtitle') }}
{{ $plan['audience'] }}
@endif {{-- What this customer's card will be charged, like the public sheet. A customer quoted 58,80 € out there must not meet 49 € on the page with the button on it. --}}{{ Number::currency($plan['gross'] / 100, in: $plan['currency'], locale: app()->getLocale()) }} {{ __('order.per_month') }}
{{-- A reverse-charge business is charged the bare net, so there is no VAT to state and no second figure to show: saying "inkl. 20 %" over a net price would describe a tax nothing collects. --}} @if ($tax->reverseCharge) {{ __('order.reverse_charge') }} @else {{ __('order.incl_vat', ['rate' => $vat]) }} · {{ __('order.net') }} {{ Number::currency($plan['net'] / 100, in: $plan['currency'], locale: app()->getLocale()) }} @endif
@if ($setup > 0){{ __('order.setup', ['amount' => Number::currency($setup / 100, in: $plan['currency'], locale: app()->getLocale())]) }}
@endif{{ __('order.terms') }}
@endif