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

Popular posts from this blog

css - SVG using textPath a symbol not rendering in Firefox -

Java 8 + Maven Javadoc plugin: Error fetching URL -

node.js - How to abort query on demand using Neo4j drivers -