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/SBogers106/rvt-trainingen.nl/app/storage/views/4d02faea70de45ff8fcdb530f019d327
<?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>