@props(['items' => []])
{{-- SEO: Breadcrumb JSON-LD --}}
@php
$ld = [
"@context" => "https://schema.org",
"@type" => "BreadcrumbList",
"itemListElement" => []
];
foreach($items as $idx => $it){
$ld["itemListElement"][] = [
"@type" => "ListItem",
"position" => $idx+1,
"name" => $it["label"],
"item" => $it["url"] ?? url()->current()
];
}
@endphp