Laravel 背包 - 表选项

Laravel Backpack - Tables options

是否可以从数据库中读取列数据?示例:

$this->crud->addField([
            'name'            => 'Price',
            'label'           => 'Options',
            'type'            => 'table',
            'entity_singular' => 'option', // used on the "Add X" button
            'columns'         => [
                'name'  => 'Country',
                'desc'  => 'Color',
                'price_from' => 'Price From',
                'price_to' => 'Price To',
            ],
            'max' => 5, // maximum rows allowed in the table
            'min' => 0, // minimum rows allowed in the table
        ]);
        
    }

是否可以从颜色 table“黑色、白色..等”中读取颜色,以便用户从下拉菜单中选择颜色而不是输入颜色名称?

我认为 the repeatable field typetable 更适合您。

可重复字段类型允许您创建一组不同类型的字段(例如:textcolor_pickernumber),然后...可重复.基本上是一排不同的字段,就像您要创建的一样。然后最终用户可以添加更多相同类型的行。我想这正是您要找的。