Skip to content

Instantly share code, notes, and snippets.

@ahuggins
Created February 26, 2017 03:10
Show Gist options
  • Select an option

  • Save ahuggins/e13648de91c677e4a6c80124e45f236c to your computer and use it in GitHub Desktop.

Select an option

Save ahuggins/e13648de91c677e4a6c80124e45f236c to your computer and use it in GitHub Desktop.
Menu
<ul class="nav navbar-nav">
@foreach($items as $menu_item)
<li class="nav-item {{ url($menu_item->link()) == url()->current() ? 'active' : '' }}">
<a href="{{ url($menu_item->url) }}">
{{ $menu_item->title }}
</a>
</li>
@endforeach
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment