@foreach (config('navigations') as $nav) @if (!empty($nav['children']))
  • {{ $nav['title'] }} {{ count($nav['children']) }}
      @foreach ($nav['children'] as $child)
    • {{ $child['title'] }}
    • @endforeach
    @else
  • {{ $nav['title'] }} @endif
  • @endforeach