- 今天在使用Luemn框架时报错
FatalErrorException
in Model.php line 3339:Call to a member function connection() on null
如下图:
- 解决办法:
在bootstrap\app.php
文件中添加如下代码:
$app->withEloquent();
问题立即解决
FatalErrorException
in Model.php line 3339:Call to a member function connection() on null
如下图:
bootstrap\app.php
文件中添加如下代码:$app->withEloquent();