I have a simple model called Category, which has the following schema:
|----------------------------------------------| |
Set this in model and try :
public function children() { return $this->hasMany(self::class, 'parent_id'); } public function grandchildren() { return $this->children()->with('grandchildren'); }