laravel-restable icon indicating copy to clipboard operation
laravel-restable copied to clipboard

Set limit

Open kossa opened this issue 8 years ago • 0 comments

Hi,

I want to set limit dynamically for index method, and i'll read it from url, something like: http://api.example.com/users?page=2&limit=2

$limit = Input::get('limit', 5);
return $this->rest->listing(User::paginate($limit))->render();

But the limit not set in the url :( image

kossa avatar Nov 28 '15 06:11 kossa