Skip to content
This repository has been archived by the owner on Nov 4, 2021. It is now read-only.

Commit

Permalink
Merge pull request #399 from pjona/patch-1
Browse files Browse the repository at this point in the history
Fixed typo
  • Loading branch information
babenkoivan authored Mar 22, 2021
2 parents 4ea6f57 + 1d6d165 commit e90827a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ Method | Example | Description
--- | --- | ---
where($field, $value) | where('id', 1) | Checks equality to a simple value.
where($field, $operator, $value) | where('id', '>=', 1) | Filters records according to a given rule. Available operators are: =, <, >, <=, >=, <>.
whereIn($field, $value) | where('id', [1, 2, 3]) | Checks if a value is in a set of values.
whereIn($field, $value) | whereIn('id', [1, 2, 3]) | Checks if a value is in a set of values.
whereNotIn($field, $value) | whereNotIn('id', [1, 2, 3]) | Checks if a value isn't in a set of values.
whereBetween($field, $value) | whereBetween('price', [100, 200]) | Checks if a value is in a range.
whereNotBetween($field, $value) | whereNotBetween('price', [100, 200]) | Checks if a value isn't in a range.
Expand Down

0 comments on commit e90827a

Please sign in to comment.