skip to Main Content

Angular 15 file upload into laravel 10 $request->file('image') return null

Im trying to upload a image from angular onImageCahnge(event: any): void { if (event.target.files.length > 0) { const file = event.target.files[0]; this.herosliderForm.patchValue({ imageSource: file }); } } on submit const formData = new FormData(); formData.append('image', this.herosliderForm.get('image')?.value) this.herosliderService.update(this.herosliderForm.value.id, formData).subscribe({ next: (response:…

VIEW QUESTION
Back To Top
Search