Created
April 29, 2016 13:30
-
-
Save gbaudoin/ca3ec8fe4a559d203dbb31ee707081bd to your computer and use it in GitHub Desktop.
Breadcrumb laravel AdminLTE / Caffeinated menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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