Fixed class name

Changed class name in bundle option relationship. Because There is no ProductBundleProductProxy class. It is related to ProductBundleOptionProxy class.
This commit is contained in:
Abdul Rehman 2021-10-30 12:09:37 +05:00 committed by GitHub
parent 8fe4fc1bc4
commit d4cd3298ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ class ProductBundleOptionProduct extends Model implements ProductBundleOptionPro
*/
public function bundle_option()
{
return $this->belongsTo(ProductBundleProductProxy::modelClass());
return $this->belongsTo(ProductBundleOptionProxy::modelClass());
}
/**
@ -33,4 +33,4 @@ class ProductBundleOptionProduct extends Model implements ProductBundleOptionPro
{
return $this->belongsTo(ProductProxy::modelClass());
}
}
}