@extends('newBase') @section('title', 'index') @section('content')
部门信息
@if(!empty($treePermissions)) @foreach($treePermissions as $onekey=>$one) @if($one['type'] == '1')
@if(!empty($one['childs']))
@foreach($one['childs'] as $twokey=>$two)
@if($two['type'] == '1')
@if(isset($two['childs']) && !empty($two['childs']))
@foreach($two['childs'] as $node) @if($node['type'] == 3)
@if(isset($node['childs']) && !empty($node['childs'])) @foreach($node['childs'] as $three)
@endforeach @endif
@else @endif @endforeach
@endif
@endif
@endforeach
@endif
@endif @endforeach @endif
@endsection