如何获取位于 Storage 中的文件?
我建立了一条路线并将其定向到myCcontroller@myMethod
. 方法如下
public function myMethod()
{
$validPath = 'valid-path-inside-local-storage';
$file = Storage::disk(env('STORAGE_TO_USE','local'))->get($validPath);
return $file;
}
但我得到了胡言乱语,可能是原始数据。如果文件是图像,我如何让浏览器显示图像,或者如果文件是,我如何下载它a.xls
?