{{ __('Promo banners') }} @if ($flash)
{{ $flash }}
@endif @if ($showForm)
{{ $editing ? __('Edit banner') : __('New banner') }}
@foreach (\App\Models\PromoBanner::TONES as $t) @endforeach

{{ __('Leave both blank to show it until you switch it off.') }}

{{-- What the customer will actually see. --}}
{{ __('Preview') }}
{{ $title ?: __('Headline') }} @if ($body) {{ $body }} @endif
@endif
@forelse ($this->banners as $b)
{{ $b->title }} @if ($b->body){{ $b->body }}@endif
{{ $b->isLive() ? __('Showing now') : ($b->is_active ? __('Scheduled') : __('Off')) }} @if ($b->starts_at || $b->ends_at) {{ $b->starts_at?->format('d M') ?: __('now') }} → {{ $b->ends_at?->format('d M') ?: __('no end') }} @endif @if ($b->impressions) {{ __(':n views', ['n' => $b->impressions]) }} @endif
@empty
{{ __('No banners yet. Anything you add here appears on your captive portal.') }}
@endforelse