@include('new_layouts.header') @include('hrm.hrm_main')

Job Category

@can('create job category') {{__('Create')}}   @endcan
@foreach ($categories as $category) @endforeach
{{__('Category')}} {{__('Action')}}
{{ $category->title }}
@can('edit job category') @endcan @can('delete job category') {!! Form::open(['method' => 'DELETE', 'route' => ['job-category.destroy', $category->id],'id'=>'delete-form-'.$category->id]) !!} {!! Form::close() !!} @endcan
@include('new_layouts.footer')