codetutorial wrote a tutorial on how to use the paginator of Laravel 5 with AngularJS

When you need to show a list of items usually is not so good to load all of them in just a single REST call. Probably the best solution to the problem is to add a load more button to the tail of the list and let it make the subsequent call to the rest api. This task can be easily accomplished with the Laravel 5 pagination built in system. It’ s also very easy to integrate this functionality with an existent AngularJS app. Let see then how to make this magic.

To examine this situation we will make a simple list of item and will show them in a single page. We start showing only 10 at begin, and we will add 10 to the list every time the Load more button is clicked.