Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

mrguseynov's avatar

Rendering HTML from database

Hi. I'm using Spatie Translateble. So Description field in database is json and some html tags(wysiwyg editor) in it. When I try to display data {{!!$article->description!!}} like this it gives me extra curly brackets like this {Hi, I am description }. How to fix it?

0 likes
2 replies
gych's avatar
gych
Best Answer
Level 29

You have to use single brackets instead of double

Example

{!! $article->description !!}

Please or to participate in this conversation.