@extends('adminlte::page') @section('title', 'Kelola Berita') @section('content_header')

Berita dan Pengumuman

Tambah Berita
@stop @section('content') @if (session('success'))
{{ session('success') }}
@endif
@forelse ($posts as $post) @empty @endforelse
Judul Tipe Status Kategori Publish Aksi
{{ $post->title }} {{ ucfirst($post->type) }} @if ($post->status === 'published') Published @elseif ($post->status === 'draft') Draft @else Archived @endif {{ $post->category?->name ?? '-' }} {{ optional($post->published_at)->format('d M Y H:i') ?? '-' }} Edit
@csrf @method('DELETE')
Belum ada data berita.
@stop @section('css') @stop @section('js') @stop