class Product_category extends Model
{
//
protected $table='PRODUCT_CATEGORIES';
public $timestamps = false;
public function getParentCategory() {
return $this->hasOne(self::class, 'id', 'parent_id');
}.
public function getChildCategories(){
return $this->hasMany(self::class, 'parent_id','id');
}
我可以通过使用getChildeCategories检索表的所有子记录,但无法检索特定类别的Parent。 它总是让我无效。
答案 0 :(得分:3)
它被称为一对多关系,x['packets']
关系的倒数是hasMany
方法,您的belongsTo
应该是:
getParentCategory()