File: D:/HostingSpaces/SBogers106/rvt-trainingen.nl/app/storage/views/da93a7f73b9ceeb65dedd1503adf5924
<?php /*
<div class="entities-list-item">
<pagination
ng-model="currentPage"
items-per-page="numPerPage"
total-items="entities.length"
max-size="maxSize">
</pagination>
</div>
*/ ?>
<div class="entities-list-item" ng-repeat="entity in entities | multiWordFilter:searchEntitiesText" ng-class="{ active: entity.active }">
<a ng-href="{{entity.link}}">
<div class="entities-item-pre" ng-bind-html="entity.thumbHtml"></div>
<div class="entities-item-text" ng-bind-html="entity.text"></div>
</a>
</div>
<div style="display: none">
<?php foreach($entities as $entity): ?>
<div class="entities-list-item<?php echo $id == $entity->getId() ? ' active' : ''; ?>">
<?php if(isset($shopSlug)): ?>
<a href="<?php echo e(route('kms.{shop}.'.$slug.'.show',['shop' => $shopSlug, $slug => $entity->id])); ?>">
<?php else: ?>
<a href="<?php echo e(route('kms.'.$slug.'.show',[$slug => $entity->id])); ?>">
<?php endif; ?>
<div class="entities-item-pre">
<div class="entities-item-thumb"><?php echo $entity->getThumbnail(); ?></div>
</div>
<div class="entities-item-text">
<?php echo $entity->getName(); ?>
</div>
</a>
</div>
<?php endforeach; ?>
</div>