我有Model A的ModelCollection。模型A与模型B有oneToMany
关系。在我的查询中,我想知道模型A与B有多少关系。我用countWith()
解决了这个问题。我用countWith()来解决这个问题。
我目前的问题是,我还想将所有单个关系的总和添加到ModelCollection中。我该怎么做?
预期React:
items: array: 3 [
{
0 => Model A
attributes: array: 15 [
...
modelB_count: 3
]
},
{
1 => model A
attributes: array: 15 [
...
modelB_count: 1
]
}
]
perPage: 25
...
total: 2
totalAllModel_B_Relations: 4 // It is the sum from 3 + 1
我该怎么做?
1条答案
按热度按时间wfveoks01#
我猜你有分页的回复。