gpt4 book ai didi

php - Laravel eager load 功能限制

转载 作者:行者123 更新时间:2023-12-02 04:01:30 25 4
gpt4 key购买 nike

<分区>

我有一个工作函数,但是,我想限制每个顾问返回的治疗次数。

工作示例:

Clinic::where('user_id', Auth::id())
->with('consultants.specialism', 'consultants.treatments')
->first();

建议的(但不工作)示例:

Clinic::where('user_id', Auth::id())
->with('consultants.specialism')
->with(['consultants.treatments' => function ($query) {
$query->take(3);
}])
->first();

不幸的是,takelimit 函数将其限制为返回的治疗总数。

What I would like is to limit each consultant's treatments to a maximum of 3, not the total.

请问我怎样才能做到这一点?

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