getDatabaseManager()->extend('mongodb', function ($config, $name) { $config['name'] = $name; return new Connection($config); }); // 添加 MongoDB 连接 $capsule->addConnection([ 'driver' => 'mongodb', 'dsn' => $dsn, 'database' => $mongoConfig['database'], 'options' => $options, ], 'mongodb'); // 设置为全局连接管理器 $capsule->setAsGlobal(); // 启动 Eloquent ORM $capsule->bootEloquent(); } } }