@props(['items' => []])
{{-- JSON-LD Breadcrumb Schema --}}
@php
$breadcrumbList = [
"@context" => "https://schema.org",
"@type" => "BreadcrumbList",
"itemListElement" => [
[
"@type" => "ListItem",
"position" => 1,
"name" => "Home",
"item" => url('/')
]
]
];
$i = 2;
foreach($items as $label => $url) {
$breadcrumbList['itemListElement'][] = [
"@type" => "ListItem",
"position" => $i++,
"name" => $label,
"item" => url($url)
];
}
@endphp
@push('scripts')
@endpush