I`m having a problem using laravel blade html helper do geenrate a link. The thing that i want to do is to use html "" as the anchor body, and i want this html to be rendered. I am calling the link as follows:
{{HTML::linkRoute('admin.event.edit', '<span class="glyphicon glyphicon-edit"></span>', $event->id) }}
The problem is that the pages show this:
<a href="****/event/2/edit"><span class="glyphicon glyphicon-edit"></span></a>
The question is : How can i tell the HTML::linkRoute to parse the content of the anchor tag.
Thanks for the time. If you need more information as in the comment section. Best Regards, Georgi.