this is just an example code when you need to use the blade engine text format

@foreach
<!-- example: $string = '<b>webune</b>'; -->
<li>{!! $string !!}</li> <!-- OUTPUT: webune -->
{{ $string }} <!-- OUTPUT: <b>webune</b> --> <!-- uses htmlentities() -->
@endforeach


note, if you are going to be using a javascript framework like angularjs, you should use an expression such as:
@{!! $string !!}