@include('new_layouts.header') @include('accounting.side-menu')

{{__('Manage Product-Service & Income-Expense Category')}}

@can('create constant category') @endcan
@include('layouts.account_setup')
@foreach ($categories as $category) @endforeach
{{__('Category')}} {{__('Type')}} {{__('Action')}}
{{ $category->name }} {{ __(\App\Models\ProductServiceCategory::$categoryType[$category->type]) }}
@can('edit constant category') @endcan
@can('delete constant category')
{!! Form::open(['method' => 'DELETE', 'route' => ['product-category.destroy', $category->id],'id'=>'delete-form-'.$category->id]) !!} {!! Form::close() !!}
@endcan
@include('new_layouts.footer')