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

Commit e90827a

Browse files
authored
Merge pull request #399 from pjona/patch-1
Fixed typo
2 parents 4ea6f57 + 1d6d165 commit e90827a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ Method | Example | Description
461461
--- | --- | ---
462462
where($field, $value) | where('id', 1) | Checks equality to a simple value.
463463
where($field, $operator, $value) | where('id', '>=', 1) | Filters records according to a given rule. Available operators are: =, <, >, <=, >=, <>.
464-
whereIn($field, $value) | where('id', [1, 2, 3]) | Checks if a value is in a set of values.
464+
whereIn($field, $value) | whereIn('id', [1, 2, 3]) | Checks if a value is in a set of values.
465465
whereNotIn($field, $value) | whereNotIn('id', [1, 2, 3]) | Checks if a value isn't in a set of values.
466466
whereBetween($field, $value) | whereBetween('price', [100, 200]) | Checks if a value is in a range.
467467
whereNotBetween($field, $value) | whereNotBetween('price', [100, 200]) | Checks if a value isn't in a range.

0 commit comments

Comments
 (0)