MohamadReza Davoudi
MohamadReza Davoudi

Reputation: 260

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

this is code:

<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.

Upvotes: 1

Views: 2013

Answers (1)

Salvatore
Salvatore

Reputation: 1435

{!! $object->text !!}

string will auto escape when you'll use {{ }}

Upvotes: 5

Related Questions