本文介绍了如何显示路径Laravel中的图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有我的form.blade.php文件
there is my form.blade.php file
D:\wamp\www\blog\resources\views\admin\articles\partials\form.blade.php
有我的图片
D:\wamp\www\blog\public\images
我如何显示它?我用这个,但这对我不起作用.
How i can display it ?I use this, but this not work for me.
<img src="../../../../public/images/ {{$article ? $article->image_path : ''}}" alt="">
推荐答案
尝试
<img src="{{URL::to('public/images').'/'.$article->image}}" alt="">
这篇关于如何显示路径Laravel中的图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!