Laravel通用路由,万能路由
Route::any('/{module}/{class}/{action}', function($module, $class, $action) {
$ctrl = \App::make("\\App\\Http\\Controllers\\" . $module . "\\" . $class . "Controller");
return \App::call([$ctrl, $action]);
});
Route::any('/{module}/{class}/{action}', function($module, $class, $action) {
$ctrl = \App::make("\\App\\Http\\Controllers\\" . $module . "\\" . $class . "Controller");
return \App::call([$ctrl, $action]);
});