@extends('layouts.app') @section('title', 'Announcements') @section('header', 'Announcements') @section('subheader', 'Company-wide and targeted notices') @section('header-actions') @can('create', App\Models\Announcement::class) New Announcement @endcan @endsection @section('content')
| Title | Audience | Published | By | Actions |
|---|---|---|---|---|
| {{ $announcement->title }} | {{ $announcement->audienceLabel() }} | {{ $announcement->published_at?->format('d M Y, H:i') ?? 'Draft' }} | {{ $announcement->creator?->name ?? '—' }} |
@can('update', $announcement)
@endcan
@can('delete', $announcement)
|
| No announcements yet. | ||||