We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't know if it is bug or not. I have been trying to update an image but the old image is not deleted/replaced.
My old code which doesn't delete old image
if(isset($request->photo)) { $model->relation->uploadImage($request->photo); }
I change it to below and it does replace old image with the new one
// Assign it to variable $myPhoto = $request->photo; if(isset($myPhoto)) { $model->relation->uploadImage($myPhoto); }
I'm on Laravel 5.8 Imageup v1.0.6
The text was updated successfully, but these errors were encountered:
Hi, If you are looking for something like Laravel Imager Happy to help.
Sorry, something went wrong.
No branches or pull requests
I don't know if it is bug or not. I have been trying to update an image but the old image is not deleted/replaced.
My old code which doesn't delete old image
I change it to below and it does replace old image with the new one
I'm on Laravel 5.8
Imageup v1.0.6
The text was updated successfully, but these errors were encountered: