1
我有一個名稱追隨者的數組列。我需要檢查數組是否有使用orWhere的特定元素。在下面的例子中,它適用於用戶,但我無法檢查followers數組是否包含authUser() - > id。laravel查詢生成器的數組類型列
->orWhere('task.user', authUser()->id)
->orWhere('task.followers', '[?]', authUser()->id)
任何幫助表示讚賞。謝謝!
怎麼樣或其中()? –
@jakubwrona orWherIn格式爲orWhereIn('id',array),它有點相反? – Rizen
什麼是「數組」列? – Ohgodwhy