我有这个代码:
public function showImage($id) {
$item = File::find($id);
return response()->file($item->file_name_and_path);
}
$item->file_name_and_path
包含以下内容:
files/2020/04/29/myfile.jpeg
现在我总是得到一个FileNotFoundException
.
图像文件位于此路径中的本地驱动程序上:
{laravel root}/storage/app/files/2020/04/29/myfile.jpeg
如何获得正确的本地路径或简单地返回带有图像 HTTP 标头的图像文件?