@extends('layouts.app') @section('title') All Categories @stop @section('breadcrumb') @stop @section('content')
@permission('create-item-category')

Categories List Add Category

@endpermission
@if(Session::has('success')) @endif @if( $categoryList->count() > 0 ) @foreach( $categoryList as $list ) @endforeach @endif
Name Parent Description Created Date Action
{{$list->category_name}} @if( $list->parent_id > 0 && !empty($list->parent)) {{$list->parent->category_name}} @else {{ '-' }} @endif {{$list->description}} {{$list->created_at}} @permission('delete-item-category')
@method('DELETE') @csrf
{{-- --}} @endpermission @permission('edit-item-category') {{-- --}} @endpermission
@stop