public function deletephoto($id)
{
$product = $this->productRepository->findWithoutFail($id);
Product::where('id', 100)->update(['photo' => NULL, 'photo_list' => NULL]);
return redirect(route('stores.index'));
}
这是我用来抓取项目并将其保存到现有文件的命令。但它不起作用。
我有这个错误。
HostingEnvironment.QueueBackgroundWorkItem
我该怎么做?