@php $announcements = cache('public_announcements'); @endphp
{{ __('New') }}
@if (!empty($announcements)) {{ __('Title') }} {{ __('Type') }} {{ __('Active') }} {{ __('Action') }} @foreach ($announcements as $entry) {{ $entry->title }} {{ $entry->type->label() }} @if ($entry->active) {{ __('Enabled') }} @else {{ __('Disabled') }} @endif @if ($app_is_demo) @else @endif @endforeach @else There is no public announcement yet @endif