从 Laravel 7 开始,我开始使用View Components。我正在尝试将$attributes
变量从一个组件传递到另一个组件,例如:
x 模态分量:
<div {{ $attributes->merge(['class' => 'modal fade']) }}> Something great... </div>
x-模态形式组件:
<x-modal {{ $attributes }}> Something great too </x-modal>
在本例中,我在 x-modal 组件中有一个id属性,例如:
<x-modal-form id="aRandomId" title="Test"></x-modal-form>
但在这种情况下,id aRandomId不会传播到 x 模态组件。由于{{ $attributes }},我出现错误“语法错误,意外的 'endif' (T_ENDIF),期望文件结束”
你知道怎么做吗?
慕少森
料青山看我应如是