pourquoi / ckeditor5-simple-upload

32 stars 22 forks source link

How do I get the uploaded image? #13

Open keatwei opened 5 years ago

keatwei commented 5 years ago

my function looks like this, but seems could not get the image public function store(Request $request) { $files = [];

    $file = $request->file('file');
    $uploaded = [];

    //process image
    return response()->json($uploaded);

}

My Script

pourquoi commented 5 years ago

the name of the file sent is "upload" not "file"