@extends('layouts.crm') @section('title')部门管理@endsection @section('header') @endsection @section('navbread') {{-- */ $navbread = [ ['name' => '系统设置', 'href' => ''], ['name' => '部门管理', 'href' => ''], ] /* --}} @endsection @section('body')

部门列表

@if(count($dept)) @foreach($dept as $k=>$v)
{{ $v['og_name'] }} ({{ isset($v['small']) ? count($v['small']) : '' }})
    @if(isset($v['small'])) @foreach($v['small'] as $k1=>$v1)
  • {{ $v1['og_name'] }}
  • @endforeach @endif
@endforeach @endif
{{-- --}}
{{----}} @if(count($deptInfoPage)) @foreach($deptInfoPage as $k=>$v) {{-- --}} @endforeach @else @endif
部门序号 部门名称 上级部门人员迁移 修改
@if($v['cp_id'] != 0) @endif B{{ $v['og_id'] }} {{ $v['og_name'] }} {{ isset($deptName[$v['cp_id']]) ? $deptName[$v['cp_id']] : '教职工管理系统' }} @if($v['pid'] != 0) @endif
暂无数据
@if(count($deptInfoPage->all()))
{!! $deptInfoPage->links() !!}
@endif
@section('footer') @endsection @endsection