提问者:小点点

如何返回一个雄辩的多对多关系的一个实例与渴望加载?


class Parent extends Model
{
    public function kids()
    {
        return $this->belongsToMany('App\Models\Kid')
            ->orderBy('age')
            ->withTimestamps();
    }

    public function oldestKid()
    {
        return $this->belongsToMany('App\Models\Kid')
            ->orderByDesc('age')
            ->take(1);
    }
}

这种方法的问题是,$parent-

#######################################################################################################


共2个答案

匿名用户

这就是我们最终的结果,它起作用了。

需要添加的重要信息:透视表是kid_父级


public function oldestKid()
{
    return $this->belongsTo(Kid::class, 'oldest_kid_id', 'id');
}

public function scopeWithOldestKid($query)
{
    $query->addSelect(['oldest_kid_id' => KidParent::select('kid_id')
        ->whereColumn('parent_id', 'parents.id')
        ->join('kids', 'kids.id', '=', 'kid_parent.kid_id')
        ->orderByDesc('kids.age')
        ->take(1)
    ])->with('oldestKid');
}

然后你可以这样使用它:

$parents = Parent::withOldestKid()->get();

foreach($parents as $parent){
 $oldest_kid = $parent->oldestKid;
 
}

如果你想发疯:你可以用https://laravel.com/docs/8.x/eloquent#global-作用域,因此如果您选择父对象,它总是被加载。

匿名用户

必须使用子查询才能执行此操作:

    public function oldestKid()
    {
        return $this->belongsTo(Kid::class);
    }

    public function scopeWithOldestKid($query)
    {
        $query->addSelect(['oldest_kid_id' => Kid::select('id')
            ->whereColumn('parent_id', 'parents.id')
            -> orderByDesc('age')
            ->take(1)
        ])->with('oldestKid');
    }

然后你可以这样使用它:


$parents = Parent::withOldestKid()->get();

foreach($parents as $parent){
 $oldest_kid = $parent->oldestKid;
 
}