37 lines
2.4 KiB
PHP
37 lines
2.4 KiB
PHP
<?php if($paginator->hasPages()): ?>
|
|
<div class="ui pagination menu" role="navigation">
|
|
|
|
<?php if($paginator->onFirstPage()): ?>
|
|
<a class="icon item disabled" aria-disabled="true" aria-label="<?php echo app('translator')->get('pagination.previous'); ?>"> <i class="left chevron icon"></i> </a>
|
|
<?php else: ?>
|
|
<a class="icon item" href="<?php echo e($paginator->previousPageUrl()); ?>" rel="prev" aria-label="<?php echo app('translator')->get('pagination.previous'); ?>"> <i class="left chevron icon"></i> </a>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php $__currentLoopData = $elements; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $element): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
|
|
<?php if(is_string($element)): ?>
|
|
<a class="icon item disabled" aria-disabled="true"><?php echo e($element); ?></a>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if(is_array($element)): ?>
|
|
<?php $__currentLoopData = $element; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $page => $url): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<?php if($page == $paginator->currentPage()): ?>
|
|
<a class="item active" href="<?php echo e($url); ?>" aria-current="page"><?php echo e($page); ?></a>
|
|
<?php else: ?>
|
|
<a class="item" href="<?php echo e($url); ?>"><?php echo e($page); ?></a>
|
|
<?php endif; ?>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
<?php endif; ?>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
|
|
|
|
<?php if($paginator->hasMorePages()): ?>
|
|
<a class="icon item" href="<?php echo e($paginator->nextPageUrl()); ?>" rel="next" aria-label="<?php echo app('translator')->get('pagination.next'); ?>"> <i class="right chevron icon"></i> </a>
|
|
<?php else: ?>
|
|
<a class="icon item disabled" aria-disabled="true" aria-label="<?php echo app('translator')->get('pagination.next'); ?>"> <i class="right chevron icon"></i> </a>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php /**PATH /var/www/exchange/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/semantic-ui.blade.php ENDPATH**/ ?>
|