@extends('layouts.app') @section('title', 'Department Hierarchy') @section('content')

Department Hierarchy

All Departments

Department Structure

@if(count($hierarchy) > 0)
@foreach($hierarchy as $dept) @include('admin.departments.partials.hierarchy-item', ['department' => $dept, 'level' => 0]) @endforeach
@else

No departments found. Create departments to see the hierarchy.

Create Department
@endif
@endsection