如何在前端显示使用 trix 创建的博客?
How can I display a blog on the frontend, which is created by using trix?
在blade中我使用的是这段代码:
<td>{{ $blog->content }}</td>
但不幸的是 blade.php 上的输出是:
<div>fascawds def ef edf <em>e df</em> dfg dfdx<strong>df dfxgfdgdf gefdger fdgerfd df </strong></div>
我该如何解决这个问题?
使用 {{!! $blog->content !!}}
显示任何 html 内容。
在blade中我使用的是这段代码:
<td>{{ $blog->content }}</td>
但不幸的是 blade.php 上的输出是:
<div>fascawds def ef edf <em>e df</em> dfg dfdx<strong>df dfxgfdgdf gefdger fdgerfd df </strong></div>
我该如何解决这个问题?
使用 {{!! $blog->content !!}}
显示任何 html 内容。