我正在使用 Laravel Collective 的link_to_route()
方法来创建链接。我想在这个链接中包含一个 Bootstrap 字形。
就像现在一样,它正在打印实际的 Html 代码。
关于如何做到这一点的任何提示?
我当前的代码:
<div class="col-lg-1 well">
{!! link_to_route('companiesindex', "<span class='glyphicon glyphicon-log-in' aria-hidden='true'></span> Companies") !!}
</div>
作为一个附带问题,在实际链接中包含字形是否正常,或者这通常是在之前还是之后?