So i have the following value:
$content = "<ol><li>AbC</li></ol><p>sd</p>"
Now I wish to display this on my page.blade.php
But I am not quite sure how to do it. I have attempted with:
{{$content}}
But as expected it just prints the HTML and does not actually inject it.
So my question is how do I inject the HTML?