gpt4 book ai didi

mysql - Eloquent关系条件2列外键

转载 作者:行者123 更新时间:2023-11-29 10:25:47 25 4
gpt4 key购买 nike

我有这样的案例

表格交易

|id|account_from_id|account_to_id|value|

帐户

|id|name|type|

我想使用从表帐户到交易的 Eloquent 关系,这是否需要附加条件,帐户为来自,或帐户为,但仅在一个函数中关系

这是我的代码

public function transactions(){
$result = $this->hasOne('App\Transactions','id', 'account_from_id');
if(!is_null($result)){
return $result;
}

return $this->hasOne('App\Transactions','id' 'account_to_id');
}

但是它并没有像我预期的那样工作,当帐户为时,它将返回null

最佳答案

模型列必须在引用表和列上定义关系使每一列都与您的模型相关

public function account_from(){
return $this->hasOne('App\Transactions','id', 'account_from_id');
}
public function account_to(){
$this->hasOne('App\Transactions','id', 'account_to_id');
}

通过新的交易属性定义账户交易

public function getTransactionAttribute(){
if(!empty($this->account_from_id)){
return $this->account_from
}else{
return $this->account_to
}
}

关于mysql - Eloquent关系条件2列外键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48333848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com