@php
function renderSitemap($items)
{
echo '
';
foreach ($items as $item) {
// Only render top-level menus if this is the full menu list
if (!isset($item->parent_id) || $item->parent_id == null) {
echo '- ';
echo '' . getLocalizedDataFromObj($item, 'title') . '';
// If children exist, render them recursively
if (!empty($item->children) && count($item->children) > 0) {
renderSubmenus($item->children);
}
echo '
';
}
}
echo '
';
}
function renderSubmenus($children)
{
echo '';
}
@endphp
{!! renderSitemap($menus) !!}