Normally, v-html in vue would solve this issue, I dont know how to get around it using blade. Note, if i use the mustache syntax it would show the contents with the tags and thats not okay.. Please any help is appreciated
Asked
Active
Viewed 818 times
0
-
Does this answer your question? [Laravel: Display HTML with Blade](https://stackoverflow.com/questions/29253979/laravel-display-html-with-blade) – N69S Sep 14 '21 at 18:37
1 Answers
0
You need to use {!! !!}
instead of {{ }}
{!! $content !!}
https://laravel.com/docs/8.x/blade#displaying-unescaped-data

MichalOravec
- 1,560
- 3
- 5
- 20
-
-
Also, pls do you know how to make my quileditor have a default value? Like a value from database – Dipo Deen Sep 14 '21 at 18:13
-