@extends('admin.layout') @section('title', 'Gestión de Categorías') @section('page-title', 'Kategori Yönetimi') @section('content')

Kategoriler

Blog kategorilerini buradan yönetebilirsiniz

Kategori Ekle
@if($categories->count() > 0)
@foreach($categories as $category) @endforeach
İsim Slug Blog Sayısı Durum İşlemler
@if($category->color) @endif {{ $category->name }}
@if($category->description) {{ Str::limit($category->description, 50) }} @endif
{{ Str::limit($category->slug, 40) }} {{ $category->blogs_count }}
@csrf @method('PATCH') @if($category->is_active) @else @endif
@csrf @method('DELETE')
{{ $categories->links() }}
@else

Henüz kategori bulunmamaktadır.

İlk Kategoriyi Oluştur
@endif
@endsection