2.15. 已知问题
Target [League\Fractal\ScopeFactoryInterface] is not instantiable while building [Dingo\Api\Transformer\Adapter\Fractal, League\Fractal\Manager]#
This issue has cropped up in some highly customised projects, for example;
github.com/dingo/api/issues/1636
The solution is to add the following line to the register() method of your AppServiceProvider
public function register()
{
$this->app->bind("League\\Fractal\\ScopeFactoryInterface", "\\League\\Fractal\\ScopeFactory");
//
}
推荐文章: