I have a string returned to one of my views, like this:
$text = \'Lorem ipsum dolor
Lorem ipsum dolor
Try this. It worked for me.
{{ html_entity_decode($text) }}
In Laravel Blade template, {{ }} wil escape html. If you want to display html from controller in view, decode html from string.