Blame view

resources/views/vendor/nwidart/menus/item/dropdown.blade.php 530 Bytes
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <li class="dropdown {{ $item->hasActiveOnChild() ? 'active' : '' }}">
    <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
      {{ $item->title }}
      <span class="caret"></span>
    </a>
    <ul class="dropdown-menu" role="menu">
      @foreach ($item->childs as $child)
          @if ($child->hasChilds())
              @include('menus::child.dropdown', ['item' => $child])
          @else
              @include('menus::item.item', ['item' => $child])
          @endif
      @endforeach
    </ul>
  </li>