0

我正在尝试从答案表一中的所有当前答案中进行选择。所以我可以将它与其他一些表相关联。

public static function getEntityFqcn(): string
{
    return Answer::class;
}

/**
 * @param string $pageName
 * @return iterable
 */
public function configureFields(string $pageName): iterable
{

    return [
        IdField::new('id')->hideOnForm(),
        Field::new('answer'), <--- HERE 
        AssociationField::new('comment'),
        AssociationField::new('category'),
    ];
}

那个特定的领域,我不想添加一个新的。但我想从所有答案字段中进行选择,以便将新评论和类别与评论相关联。

这是如何在 easy admin3 中完成的?

4

0 回答 0