I'm quite new to both RESTful API's and Laravel 5, so excuse me for any dumb questions. :-)
What's the best way to validate API requests (POST/PUT) in Laravel 5? I've learned about Form Request Validation, but that seems targeted towards forms. Would it make any sense to use this for a HTTP REST API as well? Is there a better alternative?
Also, how would one go about validating query strings in GET requests? Is that something to handle in the controller itself?