@extends('admin.layouts.master') @section('title','All Subcategories') @section('maincontent') @include('admin.layouts.topbar',$data)
# | {{ __('Icon') }} | {{ __('Category') }} | {{ __('SubCategory') }} | {{ __('Slug') }} | {{ __('Status') }} | {{ __('Action') }} |
---|---|---|---|---|---|---|
{{ __('Are You Sure') }} ?{{ __('Do you really want to delete selected item names here? This process cannot be undone') }}. |
|
@if(isset($cat->categories)){{$cat->categories['title']}}@endif | {{$cat->title}} | {{$cat->slug}} | @if( $cat->status == 1) @else @endif |
@can('subcategories.edit')
{{ __('Edit') }}
@endcan
@can('subcategories.delete')
{{ __("Delete") }}
@endcan
|