<div class="w-full">
    <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($paginator->hasPages()): ?>

        <nav role="navigation" aria-label="Pagination Navigation" class="flex mt-3 items-center justify-between w-full">
            <div class="flex">
                <button class="border border-gray-200 rounded-lg bg-white hover:bg-gray-100 hover:text-3ip font-bold px-4 py-2 mr-2"
                    <?php if($paginator->onFirstPage()): ?> disabled <?php endif; ?>
                    wire:loading.attr="disabled"
                    wire:click="previousPage('<?php echo e($paginator->getPageName()); ?>')"
                    >Anterior</button>

                <button class="border border-gray-200 rounded-lg bg-white hover:bg-gray-100 hover:text-3ip font-bold px-4 py-2 ml-2"
                    <?php if($paginator->onLastPage()): ?> disabled <?php endif; ?>
                    wire:loading.attr="disabled"
                    wire:click="nextPage('<?php echo e($paginator->getPageName()); ?>')"
                    >Siguiente</button>
            </div>
            <div class="flex font-bold">
                Página <?php echo e($paginator->currentPage()); ?> de <?php echo e($paginator->lastPage()); ?>

            </div>
        </nav>
    <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
</div><?php /**PATH /var/www/html/resources/views/livewire/components/table-pagination.blade.php ENDPATH**/ ?>