我使用 laravelUploader 包从这个链接上传我的文件。当我使用这个包在流明中发送文件时,代码如下:
$file = $this->uploader->file($request->file('file'))->push(storage_path('app'));
return $this->respondCreated(['data'=>$file->getFullPath()]);
我收到一个错误,例如:
BindingResolutionException in Container.php line 752:
Target [Illuminate\Contracts\Filesystem\Factory] is not instantiable while building [Almazik\LaravelUploader\LaravelUploader].
现在我该如何解决?