我有User
很多Post
s。在我想显示相关s 网格
的编辑表单下方。User
Post
下面的函数会带来相关的帖子。如何在编辑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);
}