gpt4 book ai didi

php - Laravel Eloquent 关系获取记录到第三级关系

转载 作者:行者123 更新时间:2023-12-04 14:19:16 24 4
gpt4 key购买 nike

我有 users 表,它与 vendordetails 表有 hasOne 关系。

class User extends Authenticatable
{
public function vendor_details() {
return $this->hasOne('App\Vendordetail');
}
}

另一方面 vendordetails 表包含 country_id、state_id 和 city_id,并且与 Country、State 和 City 模型具有 belongsTo 关系。

Vendordetail.php 模型是:-

class Vendordetail extends Model
{
public $timestamps = false;

public function this_country(){
return $this->belongsTo('App\Country', 'country_id');
}

public function this_state(){
return $this->belongsTo('App\Country', 'state_id');
}

public function this_city(){
return $this->belongsTo('App\Country', 'city_id');
}

}

如果我查询用户表,我如何获取国家、州和城市的记录。

$user = User::with('vendor_details')->first();

在这个查询中它只找到 vendordetails 表的结果,我还想要国家、州和城市。

谢谢

最佳答案

访问嵌套关系

$user = User::with(['vendor_details.this_state','vendor_details.this_country','vendor_details.this_city'])->first();

关于php - Laravel Eloquent 关系获取记录到第三级关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39814470/

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