Displaying Unescaped Data on laravel blade file

Al-Amin Islam - May 27 - - Dev Community

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

Hello, {!! $name !!}.
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . .