gpt4 book ai didi

php - Laravel 8 Eloquent : How to set OR condition to where clause in Laravel

转载 作者:行者123 更新时间:2023-12-02 16:10:43 25 4
gpt4 key购买 nike

我想显示 orders 表中的所有订单,其中该表的 status 字段等于 canceled OR 已忽略

目前我的查询是这样的:

$canceled = Order::where('status', 'canceled')
->where('user_id', $uid)
->latest()
->paginate(2);

那么我怎样才能在此处的 where 子句中添加 ignored 呢?

最佳答案

我认为 whereIn 可以解决问题

$canceled = Order::whereIn('status', ['canceled','ignored'])
->where('user_id', $uid)
->latest()
->paginate(2);

关于php - Laravel 8 Eloquent : How to set OR condition to where clause in Laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68099305/

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