@extends('backend.master') @section('content')
Notices
Create
@if(session('success'))
{{ session('success') }}
@endif
@forelse($notices as $n) @empty @endforelse
# Title Author Created Actions
{{ $n->id }} {{ $n->title }} @if($n->body)
{{ strip_tags($n->body) }}
@endif
{{ optional($n->creator)->name ?? 'User #'.$n->created_by }} {{ $n->created_at->format('Y-m-d H:i') }}
View Edit
@csrf @method('DELETE')
No notices
{{ $notices->links() }}
@endsection