Laravel问题与控制器中的嵌套子视图

时间:2019-01-26 18:52:11

标签: php html laravel-5

我试图像这样嵌套子视图控制器

$rootElement = $this->getStyles();
        $styles = Styles::user()->where('parent_id',0)->get();
        return view("settings.style",compact("menu","rootElement"))
                  ->nest('styleModal','settings.add-style-modal',compact("rootElement"));

当在样式视图中显示styleModal时

{{styleModal}}

它将html打印为文本

enter image description here

我想念的任何东西吗?

1 个答案:

答案 0 :(得分:3)

使用{!! styleModal !!}代替{{ styleModal }}

Documentation