我想用 where 條件過(guò)濾我的查詢。假設(shè)我有一個(gè) Product 模型,它與 Buyer 模型有關(guān)系。我想獲得從一組 65 歲及以上的買(mǎi)家那里購(gòu)買(mǎi)的產(chǎn)品型號(hào)列表。$query = Product::with('Buyer')
->where('Buyer.age','>=',65)
->get();但是,我無(wú)法放置這樣的 where 條件,它顯示“Buyer.age 的未知列”。請(qǐng)告知如何過(guò)濾我的結(jié)果?
OctoberCMS Eager Loading with 和 where 條件
繁華開(kāi)滿天機(jī)
2023-05-26 14:14:59