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/SBogers10/zuiderbos.komma.pro/app/storage/views/6f74b3199a712795a87a0c9c1c48b2bd
<ul ng-hide="searchEntitiesText">
<?php foreach($currentEntities as $entity): ?>
    <li class="entities-list-item<?php echo in_array($entity->node->id, $currentEntity->getPath()) ? ' open' : ''; ?><?php echo $id == $entity->node->id ? ' active' : ''; ?>">
        <?php if(isset($shopSlug)): ?>
            <a href="<?php echo e(route('kms.{shop}.'.$slug.'.show',['shop' => $shopSlug, $slug => $entity->node->id])); ?>">
        <?php else: ?>
            <a href="<?php echo e(route('kms.'.$slug.'.show',[$slug => $entity->node->id])); ?>">
        <?php endif; ?>
            <div class="entities-item-pre">
                <div class="entities-item-thumb"><?php echo $entity->node->getThumbnail(); ?></div>
            </div>
            <span class="entities-item-text">
                <?php echo e($entity->node->getName($kms->getDefaultLanguageId())); ?>

            </span>
            <?php if($entity->hasChildren()): ?>
            <div class="dropdown-icon">
                <img src="<?php echo asset('/packages/komma/kms/img/structure/icon_triangle_down.svg'); ?>" />
            </div>
            <?php endif; ?>
        </a>
        <?php if($entity->hasChildren()): ?>
            <?php echo $__env->make('kms::partials.entities.tree', ['currentEntities' => $entity->getChildren()], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
        <?php endif; ?>
    </li>
<?php endforeach; ?>
</ul>