laravel eloquent leftjoin查询覆盖模型值

时间:2017-12-01 05:54:36

标签: laravel eloquent

我的模型user_account的关系为channel,其中有一个关系company。所有user_account,渠道和公司都包含列title。我正在尝试按公司标题提取用户帐户模型,为此我正在使用:

return $q->leftJoin('channels', 'user_accounts.channel_id', '=', 'channels.id')->leftJoin('channel_companies', 'channels.channel_company_id', '=', 'channel_companies.id')->where('channel_companies.title', $companyTitle);

但是,返回时,company.title会覆盖user_account.title属性。为什么以及如何避免这种情况?

0 个答案:

没有答案