demo/resources/views/components/molecule/breadcrumb.blade.php
2023-03-23 18:50:47 +01:00

23 lines
789 B
PHP

<h3 class="card-header 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) &raquo; @endif
@endforeach
</h3>
<h3 class="card-header 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>