@extends('layouts.admin') @section('title', 'Kategori Artikel') @section('content')

Kategori Artikel

Kelola kategori untuk mengorganisir artikel

@forelse($categories as $category) @empty @endforelse
Kategori Slug Jumlah Artikel Dibuat Aksi
{{ $category->name }}
@if($category->description)
{{ Str::limit($category->description, 80) }}
@endif
{{ $category->slug }} {{ $category->articles_count }} artikel {{ $category->created_at->format('d M Y') }}
@csrf @method('DELETE')

Belum ada kategori

Mulai membuat kategori untuk mengorganisir artikel

Tambah Kategori
@if($categories->hasPages())
{{ $categories->links() }}
@endif
@endsection