Can't Display image in a webpage laravel 4 -
i have image in public/images
folder.i want show image in webpage , trying this
{{ html::image('public/images/20140208-img_2538.jpg') }}
but cant see image on webpage.instead shows broken image icon.what can can suggest?
the html::image()
expects path relative public
. try this:
{{ html::image('images/20140208-img_2538.jpg') }}
Comments
Post a Comment