使用Laravel HTML帮助程序呈现HTML内容时失败

I'm a newbie of Laravel. When I made the layout for my app, I want to display html content when use Laravel's HTML helper. Example {{ HTML::link('#','User <b class="caret"></b>'); }} but it was render as

Login <b class="caret"></b>

.

How I can display HTML content with Laravel's HTML helper. Please help me!!!

I'm unsure if this is your desired output since you did not indicate it.

But anyway

{{ HTML::link('#','User', array('class' => 'caret')) }}

Basically these are the parameters accepted by HTML::link()

{{ HTML::link(url, title, [attributes as an array], secure)}}

See the API for further info