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/SBogers93/fitale.nl/workbench/komma/kms/src/views/partials/entities/list.blade.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">
@foreach($entities as $entity)
    <div class="entities-list-item{{ $id == $entity->getId() ? ' active' : '' }}">
        @if(isset($shopSlug))
            <a href="{{{ route('kms.{shop}.'.$slug.'.show',['shop' => $shopSlug, $slug => $entity->id]) }}}">
        @else
            <a href="{{{ route('kms.'.$slug.'.show',[$slug => $entity->id]) }}}">
        @endif
            <div class="entities-item-pre">
                <div class="entities-item-thumb">{{ $entity->getThumbnail() }}</div>
            </div>
            <div class="entities-item-text">
                {{ $entity->getName() }}
            </div>
        </a>
    </div>
@endforeach
</div>