{{ $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