我在使用刀片模板时遇到语法错误...
<title>
@section('title')
this is my title
@show
</title>
生成的输出无法关闭打开的 PHP 标记?
<title>
<?php $__env->startSection('title')
this is my title
<?php echo $__env->yieldSection(); ?>
</title>
如果我执行以下操作,它会按预期工作......
<title>
@section('title'); ?>
this is my title
@show
</title>
有任何想法吗?
谢谢。