@extends('layouts.app') @section('title', $announcement->title) @section('header', $announcement->title) @section('subheader', 'Announcement') @section('header-actions')
All @can('update', $announcement) Edit @endcan
@endsection @section('content')
{{ $announcement->audienceLabel() }} {{ $announcement->published_at?->format('d M Y, H:i') ?? 'Draft' }} @if ($announcement->creator) {{ $announcement->creator->name }} @endif
{{ $announcement->body }}
@endsection