@extends('admin.layout.master') @section('content') @include('admin.layout.flash_message')
{{__('obs.department')}}
@if(checkAuthPermission('admin.hrm.department.create')) @endif
@if(!empty($all_department)) @php($i=1) @foreach($all_department as $val) @endforeach @endif
{{__('obs.sl')}} {{__('obs.name')}} {{__('obs.sorting')}} {{__('obs.status')}} {{__('obs.action')}}
{{ $i++ }} {{$val->name}} {{$val->sorting}} @if($val->status==1) {{__('obs.active')}} @else {{__('obs.inactive')}} @endif @if(checkAuthPermission('admin.hrm.department.edit')) @endif
@include('admin.hrm.department.create_modal') @endsection @section('script') @endsection