Laravel图像不会显示

时间:2017-01-27 12:59:14

标签: laravel laravel-5.3

我想在我的视图中显示图像。图像位于文件夹名称 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应用程序放到开发服务器上时,会出现此问题。 有人有什么建议吗?

1 个答案:

答案 0 :(得分:4)

使用asset()帮助程序:

<img src="{{ asset('img/zajeciadodatkowe.png') }}">

确保zajeciadodatkowe.png图片位于public/img目录。