Я пытаюсь вложить контроллер суб-представления как
$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](https://i.stack.imgur.com/AMAqj.png)
Что-нибудь, чего мне не хватает?