我不能做的事情是正确的:
{{ Form::label('search',{!!__('messages.rep_findUsr')!!} )}}
我需要先将它存储在var中,然后将其作为参数传递吗?
还是有更快的方法? 感谢
答案 0 :(得分:0)
您可以简单地将第四个参数设置为false以禁用html转义:
{{ Form::label('search',__('messages.rep_findUsr'), [], false) }}
public function label($name, $value = null, $options = [], $escape_html = true);