CasperSecurity
<div>
<?php if($paginator->hasPages()): ?>
<nav class="justify-content-between">
<div class="row flex justify-between">
<div class="w-1/3 justify-content-start" style="padding-top: 20px;">
<span class=" text-grey-600 " style="font-size: 12px; " aria-hidden="true"> Results : <?php echo e($paginator->currentPage()); ?> - <?php echo e($paginator->count()); ?> of <?php echo e($paginator->total()); ?></span>
</div>
<div class="w-2/3 justify-content-end py-4">
<ul class="pagination justify-content-end flex" style="float: right;">
<?php if($paginator->onFirstPage()): ?>
<li class="page-item px-2 disabled" aria-disabled="true" aria-label="<?php echo app('translator')->get('pagination.previous'); ?>">
<span class="page-link " style="font-size: 12px;" aria-hidden="true">‹ Previous</span>
</li>
<?php else: ?>
<li class="page-item px-2">
<button type="button" style="font-size: 12px;" dusk="previousPage" class="page-link" wire:click="previousPage" wire:loading.attr="disabled" rel="prev" aria-label="<?php echo app('translator')->get('pagination.previous'); ?>">‹ Previous</button>
</li>
<?php endif; ?>
<?php $__currentLoopData = $elements; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $element): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php if(is_string($element)): ?>
<li class="page-item px-2 disabled" aria-disabled="true"><span class="page-link" style="font-size: 12px;"><?php echo e($element); ?></span></li>
<?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()): ?>
<li class="page-item px-2 active " wire:key="paginator-page-<?php echo e($page); ?>" aria-current="page"><span class="page-link text-dark font-bold" style="font-size: 14px;"><?php echo e($page); ?></span></li>
<?php else: ?>
<li class="page-item px-2" wire:key="paginator-page-<?php echo e($page); ?>"><button type="button" class="page-link" wire:click="gotoPage(<?php echo e($page); ?>) " style="font-size: 12px;"><?php echo e($page); ?></button></li>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php if($paginator->hasMorePages()): ?>
<li class="page-item px-2">
<button type="button" dusk="nextPage" class="page-link" wire:click="nextPage" wire:loading.attr="disabled" rel="next" aria-label="<?php echo app('translator')->get('pagination.next'); ?>" style="font-size: 12px;">Next ›</button>
</li>
<?php else: ?>
<li class="page-item px-2 disabled" aria-disabled="true" aria-label="<?php echo app('translator')->get('pagination.next'); ?>">
<span class="page-link" aria-hidden="true" style="font-size: 12px;">Next ›</span>
</li>
<?php endif; ?>
</ul>
</div>
</div>
</nav>
<?php endif; ?>
</div>
<?php /**PATH /var/www/orientalss.com/resources/views/livewire/pagination-livewire.blade.php ENDPATH**/ ?>