update v 1.0.7.5
This commit is contained in:
11
vendor/davejamesmiller/laravel-breadcrumbs/views/bootstrap3.blade.php
vendored
Normal file
11
vendor/davejamesmiller/laravel-breadcrumbs/views/bootstrap3.blade.php
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
@if ($breadcrumbs)
|
||||
<ol class="breadcrumb">
|
||||
@foreach ($breadcrumbs as $breadcrumb)
|
||||
@if ($breadcrumb->url && !$breadcrumb->last)
|
||||
<li><a href="{{{ $breadcrumb->url }}}">{{{ $breadcrumb->title }}}</a></li>
|
||||
@else
|
||||
<li class="active">{{{ $breadcrumb->title }}}</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ol>
|
||||
@endif
|
Reference in New Issue
Block a user