Skip to content

Instantly share code, notes, and snippets.

@tabuna
Created June 3, 2017 20:07
Show Gist options
  • Save tabuna/657d0ebc3e581100b17094d1adcd604e to your computer and use it in GitHub Desktop.
Save tabuna/657d0ebc3e581100b17094d1adcd604e to your computer and use it in GitHub Desktop.
menu.blade.php
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
@foreach($menu as $item)
<li>
<a href="{{$item->slug}}"
title="{{$item->title}}"
target="{{$item->target}}"
rel="{{$item->robot}}"
class="{{$item->style}}"
>
{{$item->label}}
</a>
</li>
@endforeach
</ul>
</div>
<!-- /.navbar-collapse -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment