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

Commit 1d6d165

Browse files
authored
Fixed typo
1 parent 6daad2e commit 1d6d165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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)