我将如何在 blade 文件 laravel 中添加 html 标签双花括号
How I will add html tag double curly braces in blade file laravel
$slider->details 值是数据库中的滑块标题,但是未呈现。
I have solved it by php echo (<?php echo $slider->details; ?>) but I want to use
blade 语法。
By default, Blade {{ }}
statements are automatically sent through PHP's htmlspecialchars
function to prevent XSS attacks.
如果您不想转义数据,则需要使用 {!! !!}
而不是 {{ }}
:
{!! $slider->details !!}
Documentation用于显示数据。
$slider->details 值是数据库中的滑块标题,但是未呈现。
I have solved it by php echo (<?php echo $slider->details; ?>) but I want to use
blade 语法。
By default, Blade
{{ }}
statements are automatically sent through PHP'shtmlspecialchars
function to prevent XSS attacks.
如果您不想转义数据,则需要使用 {!! !!}
而不是 {{ }}
:
{!! $slider->details !!}
Documentation用于显示数据。