@extends('layouts.dashboard') @section('title', 'Notices') @section('content')

Notices

Add notice
@foreach ($notices as $notice) @endforeach
Text Live Window Status
{{ \Illuminate\Support\Str::limit($notice->text, 60) }} {{ $notice->live ? 'Yes' : 'No' }} {{ $notice->starts_at?->format('Y-m-d H:i') ?? 'Always' }} – {{ $notice->ends_at?->format('Y-m-d H:i') ?? 'Open' }} @if ($notice->is_placeholder) placeholder @endif Edit
@csrf @method('DELETE')
@endsection