File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/514641d6dfeb8e9896008087eb1f3a06
<div class="entities-header"> <h1><?php echo $title; ?></h1> <p class="text-light"><?php echo $subTitle; ?></p> </div> <div class="entities-select"> <?php echo Form::open(array('method'=>'GET', 'id'=>'selectYearAndMonthForm')); ?> <?php /**/ $blade_month = ( isset($_GET['month'])? $_GET['month'] : date('n')); /**/ ?> <?php /**/ $blade_year = ( isset($_GET['year'])? $_GET['year'] : date('Y')); /**/ ?> <?php echo Form::selectMonth('month', $blade_month, ['id' => 'orderMonthSelector']); ?> <?php echo Form::selectYear('year', date('Y'), (date('Y')-5), $blade_year, ['id' => 'orderYearSelector']); ?> <?php echo Form::close(); ?> </div> <div class="entities-list <?php echo (isset($entities) && $entities instanceof Komma\Kms\Core\Tree\Tree) ? 'tree' : ''; ?>"> <?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 class="entities-list-items"> <?php if(isset($entities) && $entities instanceof Komma\Kms\Core\Tree\Tree): ?> <div class="entities-list-item" ng-repeat="entity in entities | multiWordFilter:searchEntitiesText" ng-show="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"> {{entity.text}} </div> </a> </div> <?php echo $__env->make('kms::partials.entities.sortableTree', [ 'currentEntities' => $entities->getTree()[0]->getChildren(), 'currentEntity' => $entities->getEntityById($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; ?>