gpt4 book ai didi

php - Eloquent 返回存在关系的行

转载 作者:行者123 更新时间:2023-12-01 11:37:53 25 4
gpt4 key购买 nike

我有一个父表和一个子表,其中的 Eloquent 模型设置为:

class Parent extends Eloquent {

public function children()
{
return $this->hasMany('child');
}

}

class Child extends Eloquent {

public function parent()
{
return $this->belongsTo('parent');
}

}

如何仅返回具有 1 个或多个子项的父行?

最佳答案

来自 documentation你这样做:

$parents = Parent::has('children')->get();

关于php - Eloquent 返回存在关系的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25526226/

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