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>