@extends('layouts.admin') @section('content')
Public messaging
Publish factual store notices to the homepage. Up to three currently active Published announcements are shown, with Emergency, Closure, and Important notices prioritized ahead of ordinary informational notices.
Publishing makes the notice eligible for homepage display immediately unless a future start time is set. An end time removes it from display automatically after that time.
Open an announcement to edit its wording, urgency, status, or schedule.
{{ $currentlyVisible ? 'Visible now' : ($announcement->status === 'published' ? 'Published, outside active schedule' : str($announcement->status)->headline()) }}@if($announcement->starts_at) · Starts {{ $announcement->starts_at->format('M j, Y g:i A') }}@endif @if($announcement->ends_at) · Ends {{ $announcement->ends_at->format('M j, Y g:i A') }}@endif
No announcements yet.
@endforelse