@extends('layouts.app') @section('title', _lang('Home-screen Notices')) @section('content')

{{ _lang('Home-screen Notices') }}

{{ _lang('Broadcast a banner to every owner\'s app home screen.') }}

@include('partials.alerts')
{{ _lang('Publish Notice') }}
@csrf
{{ _lang('All Notices') }}
@forelse ($notices as $notice) @empty @endforelse
{{ _lang('Notice') }} {{ _lang('Reads') }} {{ _lang('Status') }} {{ _lang('Created') }}
{{ $notice->title }} {{ $notice->body }} {{ $notice->reads_count }} {{ $notice->active ? _lang('Active') : _lang('Off') }} {{ $notice->created_at?->format('d M Y') }}
@csrf
@csrf @method('DELETE')
{{ _lang('No notices yet.') }}
@if ($notices->hasPages()) @endif
@endsection