HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers60/agrimac.nl/app/storage/views/85a0a4fc5b97223fe62c09372d77f3f2
<?php if($sitemapItem->active): ?>

    <li>
        <a href="/<?php echo $links->{$sitemapItem->code_name}->route; ?>"><?php echo $links->{$sitemapItem->code_name}->name; ?></a>

    <?php /* Check if sitemap item is all the end of the tree branch */ ?>
    <?php if ( ! ($sitemapItem->rgt == $sitemapItem->lft+1)): ?>

        <?php /* Check if the sitemap item has children */ ?>
        <?php $children = $sitemapItem->findChildren(); ?>
        <?php if(sizeof($children) != 0): ?>

            <?php /* If it does, recall this blade with the found child as item */ ?>
            <ul>
                <?php foreach($children as $child): ?>
                    <?php echo $__env->make('layouts.partials.sitemapLoop', ['sitemapItem' => $child], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                <?php endforeach; ?>
            </ul>
        <?php endif; ?>

    <?php endif; ?>

    </li>

<?php endif; ?>