我table.rows.add(recordsArray).draw(false);
有User
个。{
我想要显示相关Post
网格的User
编辑表单。
以下功能将带来相关帖子。
如何将其组合在编辑Post
表单上方/内部/下方?
我知道这个功能会起作用,只是不知道如何组合它。
User
答案 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');
并指定您还包含该表单的视图。