如何在 div 中嵌入 html 代码?

How to embed html code inside div?

我正在使用 Bootstrap。我有一个 table,我在其中保存了一些 html 代码。当我尝试在 div 中显示它时,内容显示为文本并且未嵌入其中,我的代码是这样的:

<div class="col-xs-12 col-md-12 col-lg-12">
  <p>{{$content->content}}</p>
</div>

然后显示如下:

<p>code-code-code</p>

我该怎么办?我用了materialize,没有出现这个问题。

使用{!!你代码!!} {{ 这将以简单文本的形式回显你的所有代码}}

显示未转义的数据 https://laravel.com/docs/5.6/blade