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
Simple Code.
if($request->hasFile('image')){ $object->image = $request->image->store('your_path/image'); }
Thanks.