标签: php laravel-5
我正在使用Laravel 5查询构建器,但在使用whereNotIn函数时似乎找不到任何行。
这是我正在使用的代码:
BookingDates::where('id', $id)->whereNotIn('token', [$token])->count()
应该返回1.
但是,当我删除whereNotIn子句时,它可以工作:
BookingDates::where('id', $id)->count()