update v 1.0.7.5
This commit is contained in:
12
resources/views/_partials/breadcrumbs.blade.php
Normal file
12
resources/views/_partials/breadcrumbs.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
@if ($breadcrumbs)
|
||||
<ol class="breadcrumb breadcrumb-custom">
|
||||
<li class="text"> {!! Lang::get('lang.you_are_here') !!} :</li>
|
||||
@foreach ($breadcrumbs as $breadcrumb)
|
||||
@if (!$breadcrumb->last)
|
||||
<li><a href="{{ $breadcrumb->url }}">{{ $breadcrumb->title }}</a></li>
|
||||
@else
|
||||
<li class="text">{{ $breadcrumb->title }}</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ol>
|
||||
@endif
|
||||
Reference in New Issue
Block a user