我使用nova-repeatable-fields软件包添加更多功能。当我保存数据时,出现“字段列表中的“未知列”员工”错误。员工字段不在数据库中。我的代码是这样的:
Repeater::make('Employees')
->addField([
'label' => 'Full name',
'name' => 'full_name',
'type' => 'text',
'placeholder' => 'Full Name',
])
->addField([
'label' => 'ID No',
'name' => 'id_no',
'type' => 'text',
'placeholder' => 'ID No',
])
->addButtonText('Add')
->displayStackedForm(),