mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-31 13:41:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			874 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			874 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @foreach($items as $item)
 | |
|   <li @lm_attrs($item) @if($item->hasChildren()) class="nav-item dropdown" @endif @lm_endattrs>
 | |
|     @if($item->link) <a @lm_attrs($item->link) @if($item->hasChildren()) class="nav-link dropdown-toggle" role="button" @data_toggle_attribute="dropdown" aria-haspopup="true" aria-expanded="false" @else class="nav-link" @endif @lm_endattrs href="{!! $item->url() !!}">
 | |
|       {!! $item->title !!}
 | |
|       @if($item->hasChildren()) <b class="caret"></b> @endif
 | |
|     </a>
 | |
|     @else
 | |
|       <span class="navbar-text">{!! $item->title !!}</span>
 | |
|     @endif
 | |
|     @if($item->hasChildren())
 | |
|       <ul class="dropdown-menu">
 | |
|         @include(config('laravel-menu.views.bootstrap-items'),
 | |
| array('items' => $item->children()))
 | |
|       </ul>
 | |
|     @endif
 | |
|   </li>
 | |
|   @if($item->divider)
 | |
|   	<li{!! Lavary\Menu\Builder::attributes($item->divider) !!}></li>
 | |
|   @endif
 | |
| @endforeach
 |