Slug: {{ $item->slug }}
Kategori: {{ $item->category ?? '-' }}
Level: {{ $item->level ?? '-' }}
Status:
@php($statusClass = match($item->status){
'Published' => 'bg-success',
'Draft' => 'bg-secondary',
'Archived' => 'bg-warning',
default => 'bg-secondary'
})
{{ $item->status }}
Dibuat: {{ $item->created_at->format('d/m/Y H:i') }}
Diperbarui: {{ $item->updated_at->format('d/m/Y H:i') }}