Skip to content

Commit

Permalink
Merge pull request #1 from infernobass7/patch-1
Browse files Browse the repository at this point in the history
Fixed recursive name view include
  • Loading branch information
TheDeadCode authored May 10, 2017
2 parents cbbf41e + 5b19f1d commit ef4730d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Views/bootstrap/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
aria-expanded="false">{{ $item->title }}<span class="caret"></span></a>
<ul class="dropdown-menu">
@include('menu_elements', ['menu' => $item])
@include('menu::bootstrap.default', ['menu' => $item])
</ul>
</li>
@else
<li @if($item->active()) class="active" @endif>
<a href="{{ $item->url }}">{{ $item->title }}</a>
</li>
@endif
@endforeach
@endforeach

0 comments on commit ef4730d

Please sign in to comment.