laravel Blade {{ }} or {!! !!} statement

Solution:

{{ Escaped variable }}

{!! Unescaped variable !!}

Quote from the documentation:

By default, Blade {{ }} statements are automatically sent through PHP’s htmlentities function to prevent XSS attacks. If you do not want your data to be escaped, you may use the following syntax:

Hello, {!! $name !!}