@extends('adminlte::page') @section('title', 'Kategori Berita') @section('content_header')

Kategori Berita

Tambah Kategori
@stop @section('content') @if (session('success'))
{{ session('success') }}
@endif
@forelse ($categories as $category) @empty @endforelse
Nama Slug Urutan Status Aksi
{{ $category->name }} {{ $category->slug }} {{ $category->sort_order }} @if ($category->is_active) Aktif @else Nonaktif @endif Edit
@csrf @method('DELETE')
Belum ada kategori.
@stop @section('css') @stop @section('js') @stop