0

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

Dipo Deen
  • 11
  • 3
  • 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 Answers1

0

You need to use {!! !!} instead of {{ }}

{!! $content !!}

https://laravel.com/docs/8.x/blade#displaying-unescaped-data

MichalOravec
  • 1,560
  • 3
  • 5
  • 20