0

我有User很多Posts。在我想显示相关s 网格
的编辑表单下方。UserPost

下面的函数会带来相关的帖子。如何在编辑User表单上方/内部/下方组合它?

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

// user crud controller

    public function getUserRlatedPosts($user_id)
    {

        $crud = new CrudPanel();
        $crud->addClause('where', 'user_id', '=', $user_id);
        $crud->setModel("post");
        $crud->setEntityNameStrings("post","posts");
        $crud->enableAjaxTable();

        $this->data['crud'] = $crud;
        $this->data['title'] = ucfirst($this->crud->entity_name_plural);
        if (! $this->data['crud']->ajaxTable()) {
            $this->data['entries'] = $this->data['crud']->getEntries();
        }
        return view('crud::list', $this->data);
    }
4

1 回答 1

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');

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

于 2017-02-17T14:09:14.767 回答