Search code examples
viewlaravel-4twitter-bootstrap-3glyphicons

Laravel 4 - Bootstrap glyphicons


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.


Solution

  • Try this.

    <a href="{{ route('post.create') }}">
            <i class="glyphicon glyphicon-plus"></i>
            <span>New</span>
    </a>