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