mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-09 23:41:10 +00:00
12 lines
354 B
PHP
12 lines
354 B
PHP
@if(count($breadcrumbs) > 0)
|
|
<ol class="breadcrumb float-sm-end">
|
|
@foreach ($breadcrumbs as $bc)
|
|
@if($bc->url and !$loop->last)
|
|
<li><a href="{{ $bc->url }}">{{ $bc->title }}</a></li>
|
|
@else
|
|
<li class="active">{{ $bc->title }}</li>
|
|
@endif
|
|
@endforeach
|
|
</ol>
|
|
@endif
|