•   
      @foreach ($children['root'] as $elementKey => $element)
    • @if (isset($children[$element]))
        @foreach($children[$element] as $subKey => $subElements)
      • @if (isset($children[$subElements]))
          @foreach ($children[$subElements] as $subSubKey => $subSubElements)
        • @if (isset($children[$subSubElements]))
            @foreach($children[$subSubElements] as $grandChildrenKey => $grandChildrenElements)
          • @if (isset($children[$grandChildrenElements]))
              @foreach ($children[$grandChildrenElements] as $grandChildrenKeySub => $greatGrandChildrenElements)
            • @endforeach
            @endif
          • @endforeach
          @endif
        • @endforeach
        @endif
      • @endforeach
      @endif
    • @endforeach