hasMany(Product::class, 'product_category_id'); } public function parent(){ return $this->belongsTo(ProductCategory::class, 'parent_id'); } public function children(){ return $this->hasMany(ProductCategory::class,'parent_id'); } }