Replies: 1 comment 5 replies
-
public function whereNot($column, $operator = null, $value = null, $boolean = 'and')
{
return $this->where($column, $operator, $value, $boolean . ' not');
} Your examples are not equivalent in logic. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a table like that:
And these two calls yield different results:
Beta Was this translation helpful? Give feedback.
All reactions