I have a user-input text displayed on one of the pages. I want to allow new lines, though. How do I display the text, so it is escaped AND allows new lines?
I used nl2br()
and Blade's tripple brackets {{{$text}}}
, however, obviously, the tripple brackets escape <br/>
tags as well.
Is there a way to combine escaping and HTML's new lines using Blade?
Thanks.
{!! nl2br(e($text)) !!}
– Augusto