@zot24 See http://laravel.com/docs/5.0/routing#basic-routing
Registering A Route That Responds To Any HTTP Verb
Route::any('foo', function()
{
return 'Hello World';
});
How can I just allow any HTTP Method that could match a specific route? Like for example I don't care about if the request is GET, POST, PUT, DELETE or a personalised method like could be PROPFIND, how can we just pass any request to a specific controller method, something like:
$app->all('/principals', DavController@principals)
And then maybe if I needed handle inside that controller method the request however I need.
Please or to participate in this conversation.