I'm using pagination and I didn't find the option to show data per page like 15 30 60 120. Is there any way to get the per page selection filed with laravel pagination, if no then please suggest me any altenate.
Asked
Active
Viewed 96 times
0
-
You can use [Chumper Datatable](https://github.com/Chumper/Datatable) – Vijay Sebastian Nov 24 '15 at 06:28
1 Answers
0
You can simple create a tradition combobox at HTML for per page selection.
at the controller get the value and pass the value to paginator method like this:
$perPage = $request->get('perPage');
User::paginate($perPage);

abhishek.agarwal
- 36
- 1
- 2