在laravel背包中添加网格作为编辑表单下方

时间:2017-02-17 09:17:09

标签: laravel-5 backpack-for-laravel

table.rows.add(recordsArray).draw(false);User个。{ 我想要显示相关Post网格的User编辑表单。

以下功能将带来相关帖子。 如何将其组合在编辑Post表单上方/内部/下方?

我知道这个功能会起作用,只是不知道如何组合它。

User

1 个答案:

答案 0 :(得分:1)

在Backpack \ CRUD 3.2.x中,您可以使用以下方法使用自定义视图:

$this->crud->setShowView('your-view');
$this->crud->setEditView('your-view');
$this->crud->setCreateView('your-view');
$this->crud->setListView('your-view');
$this->crud->setReorderView('your-view');
$this->crud->setRevisionsView('your-view');
$this->crud->setRevisionsTimelineView('your-view');
$this->crud->setDetailsRowView('your-view');

并指定您还包含该表单的视图。