laravel 直接渲染模板,模板存到数据库,字符串
$html = '
Hello, {{ $name }}
@if($condition)
There is one record
@endif
';
return \Illuminate\Support\Facades\Blade::render($html, ['name' => 'Julian Bashir', 'condition' => true]);
最后更新于 2024-06-04 08:19:17 并被添加「」标签,已有 744 位童鞋阅读过。
此处评论已关闭