skip to Main Content

Laravel 9: Dropzone js why showing [object object] and returns response (Method not allowed)?

I have an action class that runs across the entire app which handles file (images) uploads: class UploadImageAction implements UploadImageContract { public function handle(Request $request, $imageProperty, $image, $imageDir) { if ($request->hasFile($imageProperty)) { // Handle uploading lf_image if (!is_null($image) && Storage::exists($image))…

VIEW QUESTION
Back To Top
Search