I am currently limiting my ng-repeat to 5 using a filter, but I\'m wondering how I can paginate the data.
<
Yes, there's a nice directive for AngularJS called dirPagination. You can paginate tables and almost everything that you need.
Look at it on Github and if you want to see a demo, Plunker.
After you downloaded the Javascript and template Html files, you need to do some basic steps:
In your Javascript file, put:
$scope.currentPage = 1; // The page that should start the pagination.
$scope.pageSize = 5; // The limit of items per page.
Change your div:
Add the pagination controls in your html file (Be sure to set the correct url for the template). UPDATE I made a plnkr to demonstrate how it would look in your case. Please, take a look.