whoami7 - Manager
:
/
home
/
qbizpnmr
/
test.qbiztax.com
/
resources
/
views
/
settings
/
categories
/
Upload File:
files >> /home/qbizpnmr/test.qbiztax.com/resources/views/settings/categories/sub_category.blade.php
@if ($sub_category->sub_categories) <x-table.tr data-collapse="child-{{ $parent_category->id }}" data-animation class="relative flex items-center hover:bg-gray-100 px-1 group border-b transition-all collapse-sub" href="{{ route('categories.edit', $sub_category->id) }}"> <x-table.td kind="bulkaction"> <x-index.bulkaction.single id="{{ $sub_category->id }}" name="{{ $sub_category->name }}" /> </x-table.td> <x-table.td class="relative w-6/12 py-4 ltr:text-left rtl:text-right whitespace-nowrap text-sm font-medium text-black truncate" style="padding-left: {{ $tree_level * 30 }}px;"> <div class="flex items-center ml-2"> @if ($sub_category->sub_categories->count()) <x-tooltip id="tooltip-category-{{ $parent_category->id }}" placement="bottom" message="{{ trans('categories.collapse') }}"> <button type="button" class="w-4 h-4 flex items-center justify-center mx-2 leading-none align-text-top rounded-lg " node="child-{{ $sub_category->id }}" onClick="toggleSub('child-{{ $sub_category->id }}', event)" > <span class="material-icons -ml-2 transform rotate-90 transition-all text-xl leading-none align-middle rounded-full text-white bg-{{ $sub_category->color }}" style="background-color:{{ $sub_category->color }};">chevron_right</span> </button> </x-tooltip> <div class="flex items-center font-bold table-submenu"> {{ $sub_category->name }} </div> </div> @else <div class="flex items-center ml-2"> <span class="material-icons text-3xl text-{{ $sub_category->color }}" style="color:{{ $sub_category->color }};">circle</span> <div class="flex items-center font-bold table-submenu ltr:ml-2 rtl:mr-2"> {{ $sub_category->name }} </div> </div> @endif @if (! $sub_category->enabled) <x-index.disable text="{{ trans_choice('general.categories', 1) }}" /> @endif </x-table.td> <x-table.td class="w-6/12 py-4 ltr:text-left rtl:text-right whitespace-nowrap text-sm font-normal text-black cursor-pointer truncate"> @if (! empty($types[$item->type])) {{ $types[$item->type] }} @else <x-empty-data /> @endif </x-table.td> <x-table.td kind="action"> <x-table.actions :model="$sub_category" /> </x-table.td> </x-table.tr> @php $parent_category = $sub_category; $tree_level++; @endphp @foreach($sub_category->sub_categories as $sub_category) @include('settings.categories.sub_category', ['parent_category' => $parent_category, 'sub_category' => $sub_category, 'tree_level' => $tree_level]) @endforeach @endif
Copyright ©2021 || Defacer Indonesia