14 lines
396 B
PHP
14 lines
396 B
PHP
|
|
@unless ($breadcrumbs->isEmpty())
|
||
|
|
<div class="breadcrumb">
|
||
|
|
@foreach ($breadcrumbs as $breadcrumb)
|
||
|
|
|
||
|
|
@if ($breadcrumb->url && !$loop->last)
|
||
|
|
<a href="{{ $breadcrumb->url }}">{{ $breadcrumb->title }}</a> <span>›</span>
|
||
|
|
@else
|
||
|
|
<span>{{ $breadcrumb->title }}</span>
|
||
|
|
@endif
|
||
|
|
|
||
|
|
@endforeach
|
||
|
|
</div>
|
||
|
|
@endunless
|