从amazon s3异步获取多个图像并显示在前端。 我应该如何为此创建控制器? 在控制器中
public function getImage()
{
return view('images');
}
在视图images.blade.php
<body>
<img src="{{ url('images/download.jpeg') }}"alt="image not available" title="">
<img src="{{ url('images/smartlock.jpg') }}"alt="image not available" title="">
<p>
</p>
现在我想同时在colsole中看到2张图片,应该异步调用它。 我应该为此在控制器中进行哪些更改。 谢谢您。