【发布时间】:2020-05-16 10:06:05
【问题描述】:
我在 laravel nova 3.6 版本中,我有一个包含多个 belongsTo 字段的表单。在 3.X 版本中,提供了一个有趣的功能,“内联关系”允许使用“showCreateRelationButton”创建相关资源,但我有这个代码:
BelongsTo::make('Candidato')
->searchable()
->sortable()
->onlyOnForms()
->prepopulate()
->showCreateRelationButton(function (NovaRequest $request) {
return true;
}),
并且没有出现创建资源链接
Belongsto Field create resource
我需要帮助:(
【问题讨论】:
-
请阅读How to Ask和edit您的问题。不要发布代码和错误的图像。一定要包含minimal reproducible example。
标签: php laravel laravel-nova