I'm trying to create an image link with the HTML helper of Laravel 4. But it seems that isn't really working. I have this line of code
{{ HTML::link("#", HTML::image("img/logo.png", "Logo") ) }}
But that just outputs a strin like this:
<img src="http://localhost/worker/public/img/logo" alt="Logo">
How come.??