33 lines
2.3 KiB
PHP
33 lines
2.3 KiB
PHP
<section class="breadcrumb">
|
|
<div class="breadcrumb-content">
|
|
<h1>{{ end($breadcrumbData)['title'] }}</h1>
|
|
<ul class="list-none">
|
|
<li class="flex items-center">
|
|
<a href="{{ route('home') }}">Home</a>
|
|
<svg class="fill-current w-3 h-3 mx-3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
|
|
<path
|
|
d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" />
|
|
</svg>
|
|
</li>
|
|
@foreach ($breadcrumbData as $key => $breadcrumb)
|
|
@if (isset($breadcrumb['link']) && $breadcrumb['link'])
|
|
<li class="">
|
|
<a href="{{ $breadcrumb['link'] }}">{{ $breadcrumb['title'] }}</a>
|
|
</li>
|
|
<li class="pt-[7px]">
|
|
<svg class="fill-current w-3 h-3 mx-3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
|
|
<path d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" />
|
|
</svg>
|
|
</li>
|
|
@else
|
|
<li class="">
|
|
<span>{{ $breadcrumb['title'] }}</span>
|
|
</li>
|
|
@endif
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
{{-- <div class="breadcrumb-footer">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 318"><path fill="#ffffff" fill-opacity="1" d="M0,264L48,260C96,256,192,288,288,304C384,320,480,320,576,314.7C672,309,768,299,864,277.3C960,256,1056,224,1152,213.3C1248,203,1344,213,1392,218.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>
|
|
</div> --}}
|
|
</section> |