belongsTo(Attribute::class); } /** * Get the product that owns the attribute value. */ public function product() { return $this->belongsTo(Product::class); } /** * Get the channel that owns the attribute value. */ public function channel() { return $this->belongsTo(Channel::class); } }