@extends('admin.layouts.master')
@section('page-title', 'Kategori Blog')
@section('content')
Daftar Kategori Blog
Tambah Kategori
| No |
Nama |
Slug |
Deskripsi |
Aksi |
@forelse($categories as $index => $category)
| {{ $index + 1 }} |
{{ $category->name }} |
{{ $category->slug }} |
{{ \Illuminate\Support\Str::limit($category->description, 80) ?: '-' }} |
|
@empty
| Belum ada kategori blog |
@endforelse
@endsection