{{-- resources/views/admin/pengumuman/index.blade.php --}} @extends('layouts.admin') @section('title', 'Manajemen Pengumuman') @section('content')

Manajemen Konten: Pengumuman

Kelola semua pengumuman sekolah.
Daftar Pengumuman
@forelse ($pengumuman as $item) @empty @endforelse
No Judul Slug Tgl. Dibuat Aksi
{{ ($pengumuman->currentPage()-1) * $pengumuman->perPage() + $loop->iteration }} {{ $item->title }} {{ $item->slug }} {{ $item->created_at->translatedFormat('d F Y') }}
@csrf @method('DELETE')
Belum ada data pengumuman.
{{ $pengumuman->links('pagination::bootstrap-5') }}
@endsection