@extends('layouts/layoutMaster') @section('title', __('Organization Hierarchy')) @section('content')

{{ __('Organization Hierarchy') }}

@if (!empty($hierarchy))
@foreach ($hierarchy as $node) @include('organisation-hierarchy.partials.node', ['node' => $node]) @endforeach
@else

{{ __('No hierarchy data available.') }}

@endif
@endsection @section('page-script') @endsection @section('page-style') @endsection