0

I save text data in database usin text editor TinyMCE, when I tried to render to blade returning the same data in database. $text = "<p>alsdkjalkdsja</p>"

{{ $text }}
Tim Lewis
  • 27,813
  • 13
  • 73
  • 102

1 Answers1

1

you can use this {!! $text !!} to render html

Mohamed Ahmed
  • 760
  • 1
  • 4
  • 11