Answers for "send image in request body laravel 6"

PHP
0

send image in request body laravel 6

public function uploadTest(Request $request) {

    if(!$request->hasFile('image')) {
        return response()->json(['upload_file_not_found'], 400);
    }
    $file = $request->file('image');
    if(!$file->isValid()) {
        return response()->json(['invalid_file_upload'], 400);
    }
    $path = public_path() . '/uploads/images/store/';
    $file->move($path, $file->getClientOriginalName());
    return response()->json(compact('path'));
 }
Posted by: Guest on July-11-2020

Code answers related to "send image in request body laravel 6"

Browse Popular Code Answers by Language