30 lines
1.2 KiB
PHP
30 lines
1.2 KiB
PHP
@php($items = $breadcrumbs ?? [])
|
|
@if(!empty($items))
|
|
<nav class="breadcrumb-nav mb-6" aria-label="breadcrumb">
|
|
<ol class="breadcrumb flex items-center space-x-2 text-sm text-gray-600">
|
|
<li class="inline-flex items-center">
|
|
<a href="{{ route('admin.dashboard') }}" class="hover:text-blue-600 inline-flex items-center">
|
|
<i class="fas fa-home mr-1"></i>
|
|
Home
|
|
</a>
|
|
</li>
|
|
@foreach($items as $i => $bc)
|
|
<li class="inline-flex items-center">
|
|
<span class="mx-2 text-gray-400">/</span>
|
|
@if(!empty($bc['url']))
|
|
<a href="{{ $bc['url'] }}" class="hover:text-blue-600 inline-flex items-center">
|
|
@if(!empty($bc['icon']))<i class="{{ $bc['icon'] }} mr-1"></i>@endif
|
|
{{ $bc['title'] ?? '' }}
|
|
</a>
|
|
@else
|
|
<span class="inline-flex items-center text-gray-700">
|
|
@if(!empty($bc['icon']))<i class="{{ $bc['icon'] }} mr-1"></i>@endif
|
|
{{ $bc['title'] ?? '' }}
|
|
</span>
|
|
@endif
|
|
</li>
|
|
@endforeach
|
|
</ol>
|
|
</nav>
|
|
@endif
|