Navigation through a Laravel filebag

前端 未结 1 633
-上瘾入骨i
-上瘾入骨i 2021-01-23 06:08

I am using a medium editor image insert plugin, which has a dependency of bluimp image upload.

For the server side, I am trying to get the image before uploading it.

相关标签:
1条回答
  • 2021-01-23 07:05

    You can manipulate file with appropriate methods only:

    $file = $request->file('photo');
    
    $request->file('photo')->move($destinationPath, $fileName);
    

    https://laravel.com/docs/5.1/requests#files

    Also, you can use additional methods.

    0 讨论(0)
提交回复
热议问题