22 lines
941 B
PHP
22 lines
941 B
PHP
<nav style="--bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%236c757d'/%3E%3C/svg%3E");"
|
|
aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
@foreach ($breadcrumbs as $breadcrumb)
|
|
@if ($loop->last)
|
|
<li class="breadcrumb-item active" aria-current="page">{{ $breadcrumb['name'] }}</li>
|
|
@else
|
|
@if (!is_empty($breadcrumb['url']))
|
|
<li class="breadcrumb-item text-primary"><a
|
|
href="{{ $breadcrumb['url'] }}">{{ $breadcrumb['name'] }}</a></li>
|
|
@else
|
|
<li class="breadcrumb-item text-secondary">{{ $breadcrumb['name'] }}</li>
|
|
@endif
|
|
@endif
|
|
@endforeach
|
|
</ol>
|
|
</nav>
|
|
|
|
@push('top_head')
|
|
{!! $breadcrumb_context !!}
|
|
@endpush
|