Laravel Recursive Relationships

后端 未结 7 2061
醉梦人生
醉梦人生 2020-11-28 21:22

I\'m working on a project in Laravel. I have an Account model that can have a parent or can have children, so I have my model set up like so:

public         


        
7条回答
  •  孤街浪徒
    2020-11-28 21:48

    public function childrenAccounts()
    {
        return $this->hasMany('Account', 'act_parent', 'act_id')->with('childrenAccounts');
    }
    

    This code returns all children accounts (recurring)

提交回复
热议问题