Or maybe if someone can show me an example of paging in ajax working with Laravel 5.0 (items are inside a div). With Laravel 4.2 that was easy to do, because I had more control over pagination.
I even tried to make a workaround, by setting the page in $ _POST or $ _GET, but without success in Laravel 5.0 (though bad, it worked in Laravel 4.2). Another possibility is if I do fully manual paging directly on repositories, including pagination options, however, will have to modify multiple code snippets.
Another solution I found just now, without making ugly hacks, and that may not change much in the programming made so far, is to define a currentPageResolver on Paginator. This is not mentioned in any time in the Laravel documentation, so it took me a while to find it. Founded this option looking in github and source codes.