27 lines
1012 B
PHP
27 lines
1012 B
PHP
<?php if(count($filters)): ?>
|
|
<div class="row mb-4">
|
|
<div class="col-lg-12">
|
|
<h4>Filter</h4>
|
|
<?php $__currentLoopData = $filters; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $filter): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<div class="row">
|
|
<div class="col-lg-12 pl-0">
|
|
<h5><?php echo e($filter['label']); ?></h5>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-12 pl-0">
|
|
<?php echo $__env->make('inc.views.filter.filterSwitcher', ['filter' => $filter], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
<div class="row">
|
|
<div class="col-lg-12 mt-4 pl-0">
|
|
<a href="<?php echo e(Request::url()); ?>">
|
|
<button class="btn btn-secondary w-100" type="button" id="filter_reset">Alle Filter zurücksetzen</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|