@extends('layouts.user_type.auth') @section('header_title', __('دسته بندی های وبلاگ')) @section('content')

{{ __('دسته بندی های وبلاگ') }}

{{ __('مدیریت کامل دسته بندی مقاله ها') }}
{{ __('افزودن دسته بندی') }}
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('حذف') }}
@forelse($categories as $category) @empty @endforelse
{{ __('ردیف') }} {{ __('نام') }} {{ __('نام انگلیسی') }} {{ __('والد') }} {{ __('توضیحات') }} {{ __('مقاله ها') }} {{ __('عملیات') }}
{{ $category->id }} {{ str_repeat('— ', $category->depth ?? 0) }}{{ $category->title }} {{ $category->title_en ?: '-' }} {{ $category->parentCategory?->localized_title ?? __('دسته اصلی') }} {{ $category->description ?: '-' }} {{ $category->blogs_count }}
@csrf @method('DELETE')
{{ __('دسته بندی‌ای ثبت نشده است.') }}
@endsection