我正在使用流明 5.3.1。$app->withFacades()
并且$app->withEloquent()
在app.php
. 在web.php
我运行以下代码:
$app->get('foo', function () {
return app('db')->select("SELECT * FROM foo");
return "Connected successfully to database " . DB::connection()->getDatabaseName();
});
该select()
调用正确地从foo
表中返回数据。但是,DB::connection()
返回:
FatalErrorException in Manager.php line 74:
Call to a member function getConnection() on null
为什么一个有效而另一个无效?