group([ 'prefix' => 'server' ], function ($router) { $router->any('/{class}/{action}', function($class, $action) { $ctrl = \App::make("\\App\\Http\\Controllers\\Server\\" . ucfirst($class) . "Controller"); return \App::call([$ctrl, $action]); }); }); } }