Level 8
Aug 3, 2016
5
Level 33
Laravel pagination info
Hello,
How do I get the following info with my json response:
current_page: 1,
from:1,
last_page:1,
next_page_url:null,
per_page:5,
prev_page_url:null,
to:5,
total:5
I use pagination like this:
$rides = $user->rides()
->with('user', 'location', 'type')
->paginate(1);
It should be set by default. (https://laravel.com/docs/5.1/pagination)
(I am using vue.js)
Thankyou
Please or to participate in this conversation.