@extends('admin.layouts.master') @section('title','Create a new child categories') @section('breadcum') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('All Child categories') }}
@can('childcategories.delete') @endcan @can('childcategories.create') @endcan
@foreach($childcategory as $cat) @endforeach
# {{ __('Icon') }} {{ __('SubCategory') }} {{ __('ChildCategory') }} {{ __('Status') }} {{ __('Action') }}
1
@if(isset($cat->subcategory)){{$cat->subcategory->title}}@endif {{$cat->title}} @if( $cat->status == 1) @else @endif
@include('admin.category.childcategory.child') @endsection @section('script') @endsection