21 lines
906 B
PHP
21 lines
906 B
PHP
<h3 class="@if(!isset($noHead)) card-header @endif text-uppercase d-none d-lg-block mb-0 p-4">
|
|
@foreach($items as $item)
|
|
@php if(is_null($item)) continue; @endphp
|
|
@if(isset($item['href']))
|
|
<a href="{{ route($item['href'], $item['parameters'] ?? []) }}">@if(isset($item['icon']))<span class="fas fa-fw fa-{{ $item['icon'] }}"></span>@endif{{ $item['label'] ?? '' }}</a>
|
|
@else
|
|
<span>@lang($item['label'])</span>
|
|
@endif
|
|
@if(!$loop->last) » @endif
|
|
@endforeach
|
|
</h3>
|
|
<h3 class="@if(!isset($noHead)) card-header @endif text-uppercase d-lg-none mb-0 p-4">
|
|
@foreach($items as $item) @if(isset($item['mobile']))
|
|
@if(isset($item['href']))
|
|
<a href="{{ route($item['href'], $item['parameters'] ?? []) }}"><span class="fas fa-fw fa-angle-double-left"></span></a>
|
|
@else
|
|
<span>@lang($item['label'])</span>
|
|
@endif
|
|
@endif @endforeach
|
|
</h3>
|