Php 检索使用引导wysihtm5编辑器编辑的数据

Php 检索使用引导wysihtm5编辑器编辑的数据,php,laravel,bootstrap-wysihtml5,Php,Laravel,Bootstrap Wysihtml5,当从数据库中检索使用引导wysihtml5编辑的数据时,我得到了纯文本作为屏幕截图。我正在使用Laravel5.2和MySQL 我怎样才能修好它 我认为: <div class="box"> <div class="box-body"> {{ $text->text }} </div> </div> {{$text->text} 使用{!!$text->text!!}不要逃

当从数据库中检索使用引导wysihtml5编辑的数据时,我得到了纯文本作为屏幕截图。我正在使用Laravel5.2和MySQL

我怎样才能修好它

我认为:

<div class="box">
        <div class="box-body">
          {{ $text->text }}
        </div>
      </div>

{{$text->text}

使用
{!!$text->text!!}
不要逃避它。谢谢。。它起作用了:)可能重复使用
{!!$text->text!!}
而无法逃脱。谢谢。。它起作用了:)可能是重复的