@extends('layouts.app') {{--Important Variable--}} @php $moduleName = __('lang.department'); $createItemName = __('lang.create') . $moduleName; $breadcrumbMainName = $moduleName; $breadcrumbCurrentName =__('lang.all'); $breadcrumbMainIcon = "fas fa-building"; $breadcrumbCurrentIcon = "format_list_bulleted"; $ModelName = 'App\Models\Department'; $ParentRouteName = 'department'; $all = checkRolePermission('Department.All'); $create = checkRolePermission('Department.Create'); $delete = checkRolePermission('Department.Delete'); $edit = checkRolePermission('Department.Edit'); $permanently_delete = checkRolePermission('Department.PermanentlyDelete'); $restore = checkRolePermission('Department.Restore'); $trash_show = checkRolePermission('Department.TrashShow'); @endphp @section('title') {{ $moduleName }} -> {{ $breadcrumbCurrentName }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content')

{{__('lang.search_criteria')}}


@csrf
{{__('lang.clear')}}
{{ $department->links() }}
{{ csrf_field() }} @if( count($department) >0 ) @foreach($department as $item) @endforeach
{{__('lang.id')}} {{__('lang.code')}} {{__('lang.name')}} {{__('lang.options')}}
{{ $i }} {{ $item->department_code }} {{ $item->department_name }}
{{__('lang.id')}} {{__('lang.code')}} {{__('lang.name')}} {{__('lang.options')}}
@else
{{__('lang.there_has_no_data')}}
@endif
{{ $department->links() }}
@stop @push('include-css') @endpush @push('include-js') {{----}} {{--All datagrid --}} @endpush