How do I create the Routes for a RESTful API in Laravel 3?
I want to use GET, PUT, POST and DELETE in order to create an API.
I want all Routes to be prefixed with /v1/
So, I can do this:
http://api.example.com/v1/controller/method/parameter
and just create the relevant controllers to check for Auth and perform actions.