@props(['items' => []]) @php $items = collect($items)->map(function ($item) { return is_array($item) ? ['label' => $item['label'] ?? '', 'href' => $item['href'] ?? null] : ['label' => (string) $item, 'href' => null]; })->values(); $last = $items->count() - 1; @endphp