Currently I use database to store all data(description, name, etc) that user key in (user can self generate content)
Yet, my site is "hijacked" by someone who knows html.. Let's say in description, they enter
<a href="http://hijack.comhijack">abc</a>
to put link:
The code in my Larvel view is {{$site->description}}
How can I restrict them to show this like plain text?

Tt will mess-up my page, and when I put my description in meta property, it will mess up to..
any solution for this?

{{{ $site->description }}}HTMLfrom user input ?