Level 14
You can use bootstrap pagination:
class ShowPosts extends Component
{
use WithPagination;
protected $paginationTheme = 'bootstrap';
...or even a custom pagination:
class ShowPosts extends Component
{
use WithPagination;
...
public function paginationView()
{
return 'custom-pagination-links-view';
}
...
}
<div>
@foreach ($posts as $post)
...
@endforeach
{{ $posts->links('custom-pagination-links-view') }}
</div>
If you need more information about it, check the docs https://laravel-livewire.com/docs/2.x/pagination