未找到列:1054:使用nova-repeatable-fields时,MySQL的“字段列表”中的未知列“ employee”

时间:2018-10-03 07:15:59

标签: laravel-nova

我使用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(),

Please show image for better understand

0 个答案:

没有答案