-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
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
Error when updating a resource after deleting an image #838
Comments
Any news on this bug? I can reproduce
|
Hello @unlikenesses , did you find a solution? |
Same issue with the
Here is the code in App\Nova\Product@fields: File::make('PDF', 'pdf_file')
->rules('file', 'mimes:pdf', 'max:10240')
->help('PDF file only. Maximum 10Mo.')
->disk('public')
->path('pdfs')
->storeAs(function (Request $request) {
return $request->pdf_file->getClientOriginalName();
})
->storeSize('pdf_filesize')
->disableDownload()
->onlyOnForms(),
|
This issue relates to an unsupported version of Nova. If you're still experiencing this in the latest version of Nova, please open a new ticket, thanks! @a2sc I can see that you've re-produced this in v2, could you please create a new issue. |
Description:
Deleting an image in a resource then immediately updating the resource produces this error:
Steps To Reproduce:
The text was updated successfully, but these errors were encountered: