@extends('layouts.app') @php $heading = !empty($module_category_data['heading']) ? $module_category_data['heading'] : __('category.categories'); $navbar = !empty($module_category_data['navbar']) ? $module_category_data['navbar'] : null; @endphp @section('title', $heading) @section('content') @if (!empty($navbar)) @include($navbar) @endif

{{ $heading }} {{ $module_category_data['sub_heading'] ?? __('category.manage_your_categories') }} @if (isset($module_category_data['heading_tooltip'])) @show_tooltip($module_category_data['heading_tooltip']) @endif

@php $cat_code_enabled = isset($module_category_data['enable_taxonomy_code']) && !$module_category_data['enable_taxonomy_code'] ? false : true; @endphp @php $can_add = true; if (request()->get('type') == 'product' && !auth()->user()->can('category.create')) { $can_add = false; } @endphp @component('components.widget', ['class' => 'box-solid', 'can_add' => $can_add]) @if ($can_add) @slot('tool')
{{-- --}} @lang('messages.add')
@endslot @endif
@if ($cat_code_enabled) @endif
@if (!empty($module_category_data['taxonomy_label'])) {{ $module_category_data['taxonomy_label'] }} @else @lang('category.category') @endif {{ $module_category_data['taxonomy_code_label'] ?? __('category.code') }}@lang('lang_v1.description') @lang('messages.action')
@endcomponent
@stop @section('javascript') @includeIf('taxonomy.taxonomies_js') @endsection