@php use Illuminate\Support\Str; $label = trim((string) ($item['label'] ?? '메뉴')); $href = trim((string) ($item['href'] ?? '')); $children = collect($item['children'] ?? [])->filter()->values(); $toTenantUrl = $toTenantUrl ?? null; $url = is_callable($toTenantUrl) ? $toTenantUrl($href) : ($href !== '' ? url($basePath . '/' . ltrim($href, '/')) : null); @endphp