I have a $text variable that contains some text and HTML code. I would like to display its HTML, but still make sure the rest of the line is escaped.
$text = 'Example text with image <img src"image_1.jpg">. More text...'
Is there a way in Laravel 5 to escape a line with Blade by allowing HTML?
source share