Logo
    @foreach($menuCategory as $k => $rootCategory) @if($rootCategory['childs'] != null)
  • {{ strtoupper($rootCategory['name']) }} @if(!empty($rootCategory['childs']))
      @foreach($rootCategory['childs'] as $subcat) @foreach($subcat as $subcate)
    • {{ $subcate['name'] }} {{-- @if(!empty($subcate['childs']))
        @foreach($subcate['childs'] as $subcategory)
      • {{ $subcategory['name'] }}
      • @endforeach
      @endif --}}
    • @endforeach @endforeach
    @endif
  • @endif @endforeach