Skip to content

Instantly share code, notes, and snippets.

View UzairQamarxyz's full-sized avatar
🎴

[Uzair] UzairQamarxyz

🎴
View GitHub Profile
@UzairQamarxyz
UzairQamarxyz / bulma-pagination.blade.php
Created May 10, 2021 21:27
Laravel Livewire pagination in bulma CSS framework
<div>
@if ($paginator->hasPages())
<nav role="navigation" aria-label="Pagination Navigation" class="pagination">
<a class="pagination-previous" wire:click="previousPage" @if ($paginator->onFirstPage()) disabled @endif>
{!! __('pagination.previous') !!}
</a>
<a class="pagination-next" wire:click="nextPage" @if (!$paginator->hasMorePages()) disabled @endif>
{!! __('pagination.next') !!}
</a>