@extends('admin.layouts.master') @section('title','Create a new child categories') @section('breadcum') @section('maincontent') @include('admin.layouts.topbar',$data)
# | {{ __('Icon') }} | {{ __('SubCategory') }} | {{ __('ChildCategory') }} | {{ __('Status') }} | {{ __('Action') }} |
---|---|---|---|---|---|
1 {{ __('Are You Sure') }} ?{{ __('Do you really want to delete selected item names here? This process cannot be undone') }}. |
|
@if(isset($cat->subcategory)){{$cat->subcategory->title}}@endif | {{$cat->title}} | @if( $cat->status == 1) @else @endif |
@can('childcategories.edit')
{{ __('Edit') }}
@endcan
@can('childcategories.delete')
{{ __("Delete") }}
@endcan
|