Skip to content

Instantly share code, notes, and snippets.

@gbaudoin
Created April 29, 2016 13:30
Show Gist options
  • Save gbaudoin/ca3ec8fe4a559d203dbb31ee707081bd to your computer and use it in GitHub Desktop.
Save gbaudoin/ca3ec8fe4a559d203dbb31ee707081bd to your computer and use it in GitHub Desktop.
Breadcrumb laravel AdminLTE / Caffeinated menu
@if($menu = $menu_example->active())
<ol class="breadcrumb">
@foreach($menu as $item)
<li><a{!! $item->attributes($item->link->attr()) .' href="' . $item->url() .'"' !!}>{!! $item->data('icon') . $item->title !!}</a></li>
@endforeach
</ol>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment