@extends('admin.layouts.master') @section('page-title', 'Kategori Blog') @section('content')

Daftar Kategori Blog

Tambah Kategori
@forelse($categories as $index => $category) @empty @endforelse
No Nama Slug Deskripsi Aksi
{{ $index + 1 }} {{ $category->name }} {{ $category->slug }} {{ \Illuminate\Support\Str::limit($category->description, 80) ?: '-' }}
@csrf @method('DELETE')
Belum ada kategori blog
@endsection