@extends('layouts.manage') @section('title') @lang('Manage Categories') @endsection @section('page-header-title') @lang('Manage Categories') @endsection @section('page-header-description') @lang('View and Manage Categories') @endsection @section('styles') @if(config('settings.export_table_enable')) @endif @include('partials.manage.categories-tree-style') @include('includes.datatable_style') @endsection @section('scripts') @include('partials.manage.dataTables-responsive') @if(config('settings.export_table_enable')) @include('partials.manage.dataTables-export') @else @endif @include('partials.manage.categories-tree-script'); @include('includes.form_delete_all_script'); @if(config('settings.toast_notifications_enable')) @endif @endsection @section('content')
@can('create', App\Category::class) @include('partials.manage.categories.create') @endcan @if(count($root_categories) > 0)

@lang('Categories Tree:')

@endif

@if(session()->has('category_deleted')) @endif @if(session()->has('category_not_deleted')) @endif @include('partials.manage.categories.index')
@endsection