Skip to content
Chirag Gude edited this page Mar 6, 2015 · 3 revisions

Paginating an Index view

  • Go to its corresponding Controller and instead of using: $reports = Report::All();
  • To paginate 5 items: $reports = Report::paginate(5);
  • And in index.blade.php add the following line: {{ $reports->links() }}
Clone this wiki locally