How to save uploaded image to Storage in laravel?

前端 未结 4 1440
太阳男子
太阳男子 2020-12-29 14:45

I am using Image intervention to save an image to the storage folder. I have the code below and it seems to just save a file name with a blank image. I think I need a way fo

4条回答
  •  星月不相逢
    2020-12-29 15:18

    if ($request->hasFile('photo')) {
    //        $path = Storage::disk('local')->put($request->file('photo')->getClientOriginalName(),$request->file('photo')->get());
                $path = $request->file('photo')->store('/images/1/smalls');
                $product->image_url = $path;
            }
    

提交回复
热议问题