In the blade I am using this code:
<td>{{ $blog->content }}</td>
but the output on the blade.php is unfortunately:
<div>fascawds def ef edf <em>e df</em> dfg dfdx<strong>df dfxgfdgdf gefdger fdgerfd df </strong></div>
How can I fix this?
use
{{!! $blog->content !!}}
to display any html content.