Skip to content

Instantly share code, notes, and snippets.

@tobysteward
Last active January 2, 2025 07:28
Show Gist options
  • Select an option

  • Save tobysteward/6163902 to your computer and use it in GitHub Desktop.

Select an option

Save tobysteward/6163902 to your computer and use it in GitHub Desktop.
Laravel AJAX Pagination with JQuery
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Laravel AJAX Pagination with JQuery</title>
</head>
<body>
<h1>Posts</h1>
<div class="posts">
@include('posts')
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
$(window).on('hashchange', function() {
if (window.location.hash) {
var page = window.location.hash.replace('#', '');
if (page == Number.NaN || page <= 0) {
return false;
} else {
getPosts(page);
}
}
});
$(document).ready(function() {
$(document).on('click', '.pagination a', function (e) {
getPosts($(this).attr('href').split('page=')[1]);
e.preventDefault();
});
});
function getPosts(page) {
$.ajax({
url : '?page=' + page,
dataType: 'json',
}).done(function (data) {
$('.posts').html(data);
location.hash = page;
}).fail(function () {
alert('Posts could not be loaded.');
});
}
</script>
</body>
</html>
<?php
class BlogController extends Controller
{
/**
* Posts
*
* @return void
*/
public function showPosts()
{
$posts = Post::paginate(5);
if (Request::ajax()) {
return Response::json(View::make('posts', array('posts' => $posts))->render());
}
return View::make('blog', array('posts' => $posts));
}
}
<?php
class Post extends Eloquent
{
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'posts';
/**
* Define guarded columns
*
* @var array
*/
protected $guarded = array('id');
}
@foreach ($posts as $post)
<article>
<h2>{{ $post->title }}</h2>
{{ $post->summary }}
</article>
@endforeach
{{ $posts->links() }}
@mudasir093

Copy link
Copy Markdown

any one guide me i have an error how can i solve it ?
FatalErrorException in BlogController.php line 17:
Class 'App\Http\Controllers\Post' not found

@ikasuryani

Copy link
Copy Markdown

@mudasirsyed93
try add a path to the Post class
like: 'use App\Post;'

@Rexeh

Rexeh commented Feb 14, 2016

Copy link
Copy Markdown

This works great, the only issue I'm having is that the currentPage doesn't go back to the front-end. So when using pagination controls to go to page 2, page 1 stays the active link.

Any solution?

@qaiserjaffri

Copy link
Copy Markdown

This really great thanks :)

But i have an issue my request on next or page number click makes ajax request twice for same page number and results are same for both requests. Any One help Me please thanks in advance.

@dokicro

dokicro commented Mar 23, 2016

Copy link
Copy Markdown

@Rexeh you should put {{ $posts->link }} to posts.blade.php to generate pagination again too...

@qaiserjaffri remove

$(window).on('hashchange', function() { if (window.location.hash) { var page = window.location.hash.replace('#', ''); if (page == Number.NaN || page <= 0) { return false; } else { getPosts(page); } } });

@juljul98

Copy link
Copy Markdown

when I clicked page 2 . the result will display when I clicked back to 1 it doesn't display the page 1

@umairbscs1

Copy link
Copy Markdown

Thanx

@jaazee

jaazee commented May 20, 2016

Copy link
Copy Markdown

anyone help me to write route for this ? i am using Laravel i am having problem when click on link it gave error

@JorenRapini

JorenRapini commented Jun 27, 2016

Copy link
Copy Markdown

If you're getting an error after clicking a pagination link, it's possible you need to include View and Response in your controller at the top. That's what I forgot to put in initially.

use View;
use Response;

@jpedrera

jpedrera commented Nov 2, 2016

Copy link
Copy Markdown

Thanks, really useful.

@mohamedaimann

Copy link
Copy Markdown

This is working in Laravel 5.3. Thank you very much. @mohamedaimann

@AndyHulme

Copy link
Copy Markdown

Nice colours!

@robinbentley

Copy link
Copy Markdown

g8 m8 i r8 8/8, no h8

@compworkmail

Copy link
Copy Markdown

super! Thanks for this example!

@milanchheda

Copy link
Copy Markdown

Excellent stuff.

@lgugliotta

lgugliotta commented Aug 9, 2017

Copy link
Copy Markdown

I do this function for use in laravel, it's run perfectly

function ajaxPagination(){
                    $('.pagination a').on('click', function(e){
                        e.preventDefault();
                        var url = $(this).attr('href');
                        $.ajax({
                            type: 'GET',
                            url: url,
                            dataType: "html",
                            beforeSend: function(){
                                $('.selector').html("<div class='pt-sm text-center'><i class='fa fa-cog fa-spin fa-4x fa-fw' aria-hidden='true'></i>")
                             
                            },
                            success: function(dataHtml){
                                setTimeout(function(){
                                    $('.selector').html(dataHtml);
                                    ajaxPagination();
                                }, 2000);
                            },
                            error: function(){
                                $('.selector').html("<div class='pt-sm text-center'><p>Error al carga. Intente mas tarde</p></div>");
                            }
                        })
                    })
                }

@kc28

kc28 commented Oct 30, 2017

Copy link
Copy Markdown

Thank You Very Much

@Tungquantedge

Copy link
Copy Markdown

image
I have problems help me

@bezhanSalleh

Copy link
Copy Markdown

@Tungquantedge, Change line 17. if(Request::ajax()){ to 17. if(request()->ajax()){ you will be good to go.

@AhsanMalikGit

Copy link
Copy Markdown

Thnkew very much Dear.

@manishprajapatidev

Copy link
Copy Markdown

@flycoop Did you found any idea to remove #1, #2.... in the URL?

@Hasnaakhalf

Copy link
Copy Markdown

thanks worked well
but i have two paginations at the same view when i run the first one returns correct results and when run the second pagination return the results of first request ..note the two queries at the same function ..any idea to add 2 pagination with same function and same view

@notridan

Copy link
Copy Markdown

This work well, just need to put the correct url and the div you want to load data. Thanx

@sarabksidhu

Copy link
Copy Markdown

Hi,
its working properly. i have one doubt the landing page/first page shows proper result but cant see api call in network area if inspection. but when i click 2nd page or 3rd page or back to 1st page then the api calls work properly. is it possible to call api on landing page. if it is then how?
Thank you

@ZawHtettnaing

Copy link
Copy Markdown

Thank you very much dear.

@sodmond

sodmond commented Feb 4, 2021

Copy link
Copy Markdown

Thanks for this, worked fine

@terremoth

terremoth commented Mar 21, 2021

Copy link
Copy Markdown

I CONSIDER YOU A FUCK1NG GENIUS

Why we didn't think about make() views than render() it and send to JSON?
GENIUS

FUCK1NG LOVE LARAVEL TOO ❤️

@Mustafa535152

Copy link
Copy Markdown

Me Like pagination Next page click but current page checkbox checked in continue not a unchecked after next page Plz solutions ...

@princewillopah

Copy link
Copy Markdown

Thank you guy. it worked perfectly
However, i have another issue. when i clicked any of the items in the list on page 5(for example) and click the "browser Back Button", it takes me to page 1 insteady of page 5.
this is only happening in chrome. it is working well in firefox. pls help

@MotalibHossain

Copy link
Copy Markdown

Hi there! I seem to be encountering an issue with the browser buttons in my Laravel Ajax pagination. I've detailed my problem below the link. Would you be able to help me out with this? Thank you!
Issue with browser buttons in Laravel Ajax pagination

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment