Is this the best way to add global middleware? ```php $router->group(['middleware' => SimpleMiddleware::class], function (Router $router) { // All routes go here }); ```