我需要在没有Zipper的Laravel响应下载功能中下载多个图像,因为我需要在Angular的新页面上显示图像。感谢。
答案 0 :(得分:0)
如果我对您的理解正确,那么您希望服务器提供图像吗?
public function get($path)
{
$file = Storage::disk('s3')->get($pathToImage);
return response($file, 200)->header('Content-Type', 'image/png');
}