File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/18699c1439e64165328ee7bb6c5289c0
<div class="entities-header"> <h1><?php echo $title; ?></h1> <p class="text-light"><?php echo $subTitle; ?></p> </div> <div class="entities-search"> <form> <input type="text" name="search" placeholder="Search..." ng-model="searchEntitiesText"> </form> <?php if($section->showCreate()): ?> <div class="entities-list-item entities-new"> <?php if(isset($shopSlug)): ?> <a href="<?php echo e(route('kms.{shop}.'.$slug.'.create', ['shop' => $shopSlug])); ?>"> <?php else: ?> <a href="<?php echo e(route('kms.'.$slug.'.create')); ?>"> <?php endif; ?> <div class="entities-item-pre"> <div class="entities-item-plus"></div> </div> <div class="entities-item-text"> Add new item </div> </a> </div> <?php endif; ?> </div> <div class="entities-list <?php echo (isset($entities) && $entities instanceof Komma\Kms\Core\Tree\Tree) ? 'tree' : ''; ?>"> <div class="entities-list-items"> <?php if(isset($entities) && $entities instanceof Komma\Kms\Core\Tree\Tree): ?> <?php echo $__env->make('kms::partials.entities.sortableTree', [ 'currentEntities' => $entities->getTree()[0]->getChildren(), 'currentEntity' => $entities->getEntityById($id), 'currentEntityId' => $id ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php else: ?> <?php echo $__env->make('kms::partials.entities.list', [ 'currentEntities' => $entities, 'currentEntityId' => $id ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php endif; ?> </div> </div> <?php if(isset($entities) && $entities instanceof Komma\Kms\Core\Tree\Tree): ?> <div class="entities-order"> <a href="#" ng-hide="isSorting" ng-click="activateSorting()"> Verander volgorde </a> <a href="#" ng-show="isSorting" ng-click="deactivateSorting()"> Volgorde toepassen </a> </div> <?php endif; ?>