gpt4 book ai didi

php - 在 Eloquent 中为每个模型附加关系计数

转载 作者:行者123 更新时间:2023-12-04 03:49:51 24 4
gpt4 key购买 nike

在我的应用程序中,一个地址可以有很多地方,现在我想检索所有地址,并附加到每个地址的位置数,我该如何使用 Eloquent 做到这一点?

$address= Address::with('places')->get();
提前致谢

最佳答案

使用 Eloquent 的 withCount() :

$address = Address::withCount('places')->get();
它将返回带有字段的每个模型相关行的计数
$address->places_count
withCount 的官方文档可以找到 here

关于php - 在 Eloquent 中为每个模型附加关系计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64582023/

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