@extends('layouts.app') @section('title', 'Manajemen Halaman') @section('content')

Manajemen Halaman

Tambah Halaman
@if(session('success')) @endif
@forelse($halamen ?? [] as $index => $halaman) @empty @endforelse
No Judul Slug Status Tanggal Dibuat Aksi
{{ $index + 1 }} {{ $halaman->judul ?? 'Tidak ada judul' }} {{ $halaman->slug ?? 'tidak-ada-slug' }} @if(($halaman->status ?? 'draft') === 'published') Published @else Draft @endif {{ $halaman->created_at ? $halaman->created_at->format('d/m/Y H:i') : '-' }}
@csrf @method('DELETE')

Belum ada halaman yang dibuat.

Buat Halaman Pertama
@if(isset($halamen) && method_exists($halamen, 'links'))
{{ $halamen->links() }}
@endif
@endsection @push('styles') @endpush