Laravel parent / child relationship on the same model

后端 未结 2 1657
感动是毒
感动是毒 2020-12-13 10:18

The Setup And Dummy Data

I have a simple model called Category, which has the following schema:

|----------------------------------------------|
|          


        
2条回答
  •  时光取名叫无心
    2020-12-13 11:02

    Set this in model and try :

    public function children()
    {
        return $this->hasMany(self::class, 'parent_id');
    }
    
    public function grandchildren()
    {
        return $this->children()->with('grandchildren');
    }
    

提交回复
热议问题