@extends('admin.layout.tamplate') @section('content')
@include('admin.layout.breadcumb') @include('admin.layout.alert') {{-- Filter & Search Bar --}}
{{-- Input Pencarian --}}
{{-- Filter Kategori --}}
{{-- Tombol Cari (Gaya Luar) --}}
{{-- Tombol Tambah --}} Tambah Berita Baru
{{-- Table Section --}}
@forelse($datas as $news) @empty {{-- ... bagian empty tabel tetap sama ... --}} @endforelse
Informasi Konten Kategori Status Views Tanggal Rilis Tindakan
{{ $news->title }}

{{ $news->title }}

Admin | {{ $news->slug }}

{{ $news->category->name ?? 'Uncategorized' }} @if ($news->status == 'publish') Terbit @else Draft @endif {{ number_format($news->views) }}
{{ $news->created_at->format('d M Y') }}
{{ $news->created_at->format('H:i') }} WIT
@csrf @method('DELETE')
{{-- Pagination --}}
{{ $datas->links('pagination::tailwind') }}
{{-- ================= ALERT SCRIPTS & STYLE ================= --}} @endsection