I have a string returned to one of my views, like this:
$text = \'Lorem ipsum dolor
Lorem ipsum dolor
You can use {!! $text !!} for render HTML code in Laravel
{!! $text !!}
If you use
{{ $text }}
It will not render HTML code and print as a string.