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

Department

@can('create department') {{__('Create')}}   @endcan
@foreach ($departments as $department) @endforeach
{{__('Branch')}} {{__('Department')}} {{__('Action')}}
{{ !empty($department->branch)?$department->branch->name:'' }} {{ $department->name }}
@can('edit department') @endcan @can('delete department') {!! Form::open(['method' => 'DELETE', 'route' => ['department.destroy', $department->id],'id'=>'delete-form-'.$department->id]) !!} {!! Form::close() !!} @endcan
@include('new_layouts.footer')