我在路径中有一个文件:
app/public/template/templateeSkillsMatrix_Config.docx
当我使用时:
return response()->download(storage_path('app/public/template/eSkillsMatrix_Config.docx'));
它正在工作,但是当我使用时:
return Storage::download(storage_path('app/public/template/eSkillsMatrix_Config.docx'));
它显示一个错误:
在路径中找不到文件:E:/project/agl/nav/New folder/DKMH/storage/app/public/template/eSkillsMatrix_Config.docx
我不知道为什么。我阅读了 laravel 文档,但我不明白它的参数是什么。
请帮忙!