我有2个实体以1-n关系连接。我可以按如下所示在ListEntries操作中添加一列。
$this->crud->addColumn([
'label' => 'Physical poster slots',
'type' => 'select',
'name' => 'id',
'entity' => 'physicalPosters',
'attribute' => 'date',
'model' => 'App\Models\PhysicalPoster',
]);
我还可以如下在“更新”操作中添加一个字段。
$this->crud->addField([
'label' => 'Physical poster slots',
'type' => 'select',
'name' => 'id',
'entity' => 'physicalPosters',
'attribute' => 'date',
'model' => 'App\Models\PhysicalPoster',
]);
要做的是在Update操作中显示ListEntries。对于熟悉Laravel Nova的人来说,生成的Update操作看起来像这样...
我发现this post解释了如何通过链接到新页面来实现类似目的,但是我正在寻找可以在更新(或显示)页面本身上使用的东西。
背包有可能吗?