darcy111
darcy111

Reputation: 151

Laravel summernote in displaying

Guys I need your help,

In summer note I add text like this: summernote

But this is what I get as a result:

Result

What I do to desplay the text is like below:

{{ str_limit(strip_tags($place->description), 150) }}

Upvotes: 0

Views: 893

Answers (1)

Florian Laforgue
Florian Laforgue

Reputation: 299

Blade provides default protection against html/css/js code injection so you should try to use {!!instead of {{. Moreover, the strip_tags function will remove all html tags, but summernote will save what you wrote as html, so it needs it to be displayed as html. I would try something like that :

{!! str_limit($place->description, 150) !!}

Let me know if it helped you :)

Upvotes: 1

Related Questions