我想在我的视图中显示图像。图像位于文件夹名称 img 的公用文件夹中。
我尝试过以下解决方案:
<img href="{{URL::to('img/zajeciadodatkowe.png')}}" alt="Image" height="200" width="200">
<img src="{{URL::to('img/zajeciadodatkowe.png')}}" alt="Image" height="200" width="200">
<img href="{{URL::asset('img/zajeciadodatkowe.png')}}" alt="Image" height="200" width="200">
<img src="{{URL::asset('img/zajeciadodatkowe.png')}}" alt="Image" height="200" width="200">
<img href="{{asset('img/zajeciadodatkowe.png')}}" alt="Image" height="200" width="200">
<img src="{{asset('img/zajeciadodatkowe.png')}}" alt="Image" height="200" width="200">
当我将laravel应用程序放到开发服务器上时,会出现此问题。 有人有什么建议吗?
答案 0 :(得分:4)
使用asset()
帮助程序:
<img src="{{ asset('img/zajeciadodatkowe.png') }}">
确保zajeciadodatkowe.png
图片位于public/img
目录。