@extends('layouts.app') @section('title', 'Postingan Berita') @section('content')

Admin / Berita / Postingan

Daftar Berita
@foreach ($newsPosts as $post) @endforeach
No. Judul Kategori Status Tanggal Terbit Aksi
@if($post->featured_image) {{ $post->title }} @else
@endif
{{ $post->title }}
{{ $post->category?->name ?? '-' }} {{ $post->status === 'published' ? 'Dipublikasikan' : 'Draft' }} {{ $post->published_at?->format('d M Y H:i') ?? '-' }}
@csrf @method('DELETE')
@endsection @section('page-script') @endsection