{{ __('Article Categories') }}
{{ __('Please review the list.') }}
{{ __('Add Article Category') }} {{ __('List Articles') }}
@if ($article_categories->isEmpty())

{{ __('There is no data to display') }}

@else
@foreach ($article_categories as $article_category) @endforeach
{{ __('Category') }} {{ __('Description') }} {{ __('Active') }} {{ __('Actions') }}
@if ($article_category->image)
@endif
{{ $article_category->name }}
{{--
{{ $article_category->title }}
--}} @if ($article_category->parent)
{{ __('Child of') }}: {{ $article_category->parent->name }}
@endif
{{ $article_category->description }} @if ($article_category->active) {{ __('Active') }} @else {{ __('Inactive') }} @endif @if (auth()->user()->can('update-articles')) {{ __('Edit') }}, {{ $article_category->name }} @endif @if (auth()->user()->can('delete-articles')) @endif
@if ($article_categories->hasPages())
{{ $article_categories->links() }}
@endif
@endif
@once @push('scripts') @endpush @endonce