Cannot download file from storage folder in laravel 5.4

前端 未结 2 2021
误落风尘
误落风尘 2020-12-11 09:18

I have store the file in storage/app/files folder by $path=$request->file->store(\'files\') and save the path \"files/LKaOlKhE5uITzAbRj5PkkNunWldmUTm3tOWP

2条回答
  •  借酒劲吻你
    2020-12-11 09:53

    I'm using Laravel 6.X and was having a similar issue. The go around according to your issue is as follows: 1)In your routes/web.php do something like

    /**sample route**/
    Route::get('/download/{path}/', 'MyController@get_file');
    

    2)Then in your controller (MyController.php) for our case it should look like this:

    download($path);
        }
    }
    

提交回复
热议问题