Home API Tools Posts Hire Me About
Sign In Create Account
Laravel

Livewire Pagination: Custom Styles and Infinite Scroll

December 24, 2025 1 min read 55 views

Pagination in Livewire:

Basic Pagination

public function render()
{
    return view('livewire.posts', [
        'posts' => Post::paginate(10)
    ]);
}

In Blade Template

@foreach($posts as $post)
    
@endforeach
{{ $posts->links() }}

Infinite Scroll

@foreach($posts as $post) @endforeach

Reset Page on Search

public function updatingSearch()
{
    $this->resetPage();
}
Share this post:

Related Posts

Comments (0)

Please log in to leave a comment. Log in

No comments yet. Be the first to comment!