php - Laravel get requests from multipart/form-data in POST method

one text

Solution:

Assuming your enctype="multipart/form-data" is correct and file name is myfile, You should get it as

$file  = $request->file('myfile');

in your controller or other class like FormRequest class or Validation class

Source