Does anybody know how can I do to put a Bootstrap glyphicon
in my
{{ link_to_route('post.create', 'New' ) }}
I would like to show a glyphicon just before 'New', and I don't know how to do it.
Try this.
<a href="{{ route('post.create') }}">
<i class="glyphicon glyphicon-plus"></i>
<span>New</span>
</a>