laravel-restable
laravel-restable copied to clipboard
Set limit
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 :(