0

我目前了解 Laravel Blade 组件和包含的基础知识,但是我试图从另一个包含中调用包含。

例如

输入包括

<!-- Alias is 'input' -->
<input type="{{ $type ?? 'text' }} value="{{ $value ?? '' }}" />

文本包括

<div>
    <div>Label</div>
    @input(['value'=>'Foo'])
</div>

隐藏包含

<div>
    @input(['type'=>'hidden','value'=>'Bar'])
</div>

尝试使用 Text 和 Hidden 包含不起作用,因为我得到了:

Action Facade\Ignition\Http\Controllers\ShareReportController not defined.错误,但是仅使用输入包含时一切都很好。我已经用组件完成了上述所有操作,并得到了相同的结果。

有谁知道上述是否可行,而我只是遗漏了一些东西?还是我需要以不同的方式解决这个问题?

谢谢

4

1 回答 1

0

Found the issue, I posted this too soon. My quotes weren't closing properly, and the error message appears to be generic and doesn't reflect the actual error.

于 2019-10-16T03:56:22.533 回答