I have a table in the database contains html codes , i want to append those codes like html in my blade page , but when use
{{ $question->qst_body }}
the result will be some HTML codes are written in plain text how i can disply like html code , for example when i have in database
$question->qst_body = <b>hello world<b>
The result must be :
hello world
not :
hello world