laravel-restable
laravel-restable copied to clipboard
RESTful format for Laravel
PHPStorm (and other IDEs) tend to give incorrect warnings due to the incorrect doc blocks. This PR fixes the following: - IDEs not understanding Restable fluent syntax (such as for...
`Unprocess` expects a `MessageBag`, just passing `$validator` won't work, as `$validator` is an instance of `Validator`
I couldn't get this package to work without defining my provider/alias as seen in the below changes.
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...