@extends('admin.layouts.master') @section('title','Create a new child categories') @section('breadcum') @component('components.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('ChildCategories') }} @endslot @slot('menu1') {{ __('ChildCategories') }} @endslot @slot('button')
@can('childcategories.delete') @endcan @can('childcategories.create') @endcan
@endslot @endcomponent
{{ __('All Child categories') }}
@foreach($childcategory as $cat) @endforeach
# {{ __('SubCategory') }} {{ __('ChildCategory') }} {{ __('Icon') }} {{ __('Status') }} {{ __('Action') }}
1 @if(isset($cat->subcategory)){{$cat->subcategory->title}}@endif {{$cat->title}}
@include('admin.category.childcategory.child') @endsection @section('script') @endsection