how can I return or print "HTTP VERB" that passed to route?

Route::any('/', function()
{
    return "HTTP VERB";
}

thanks,

有帮助吗?

解决方案

i think you're looking for the request method:

$method = Request::method();
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top