在 div 标签中显示保存在数据库中的 ckeditor 数据
display ckeditor data saved in database in div tag
i want to display ckeditor data saved in dadabase in div tag. I mean,
I save ckeditor data to the database and restore this data to the
div tag and also with the tags being applied to that text.
When typing this code, the following text will be displayed
这是代码:
<div> {{$object->text}} </div>
It displays this;
I want these tags to apply
html> <head> <title></title> </head> <body dir="rtl"> <p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry.
{!! $object->text !!}
当您使用 {{ }}
时,字符串将自动转义
i want to display ckeditor data saved in dadabase in div tag. I mean, I save ckeditor data to the database and restore this data to the div tag and also with the tags being applied to that text.
When typing this code, the following text will be displayed
这是代码:
<div> {{$object->text}} </div>
It displays this; I want these tags to apply
html> <head> <title></title> </head> <body dir="rtl"> <p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry.
{!! $object->text !!}
当您使用 {{ }}
时,字符串将自动转义