Feuerwehr-eppingen/resources/views/inc/breadcrumb/breadcrumb.blade.php

27 lines
546 B
PHP

@php
if(isset($model))
{
$breadcrumbModel = $model;
}
elseif(isset($models))
{
$breadcrumbModel = $models;
}
@endphp
@if(isset($breadcrumbModel))
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
@foreach(Breadcrumb::create($breadcrumbModel) as $crumb)
<li class="breadcrumb-item @if($loop->last) active @endif" @if($loop->last) aria-current="page" @endif>
@if($loop->last)
{{ $crumb->label }}
@else
<a href="{{ $crumb->url }}">{{ $crumb->label }}</a>
@endif
</li>
@endforeach
</ol>
</nav>
@endif