@foreach (getSideMenuGestor() as $key => $item) @php $fullUrl = url($item['link']); // monta a URL corretamente com protocolo e host $isActive = request()->is(ltrim($item['link'], '/')); // compara sem barra inicial $itemId = $item['id']; $parentId = $item['parent_id']; $link = $item['link']; $title = $item['title']; $icon = $item['icon']; @endphp @if ($parentId === null && $link !== '')