Laravel Recursive Relationships

后端 未结 7 2053
醉梦人生
醉梦人生 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:32

    We're doing something similar, but our solution was this:

    class Item extends Model {
      protected $with = ['children'];
    
      public function children() {
        $this->hasMany(App\Items::class, 'parent_id', 'id');
     }
    }
    

提交回复
热议问题