We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent def4631 commit 202a33cCopy full SHA for 202a33c
README.md
@@ -19,7 +19,7 @@ Check database has rows
19
20
$testCase->assertDatabaseHas('table', [
21
'column1' => 'value1',
22
- 'column2' => 'value2',
+ WhereCondition::make('column2', '>=', 42),
23
]);
24
```
25
@@ -29,6 +29,6 @@ Check rows are missing in database
29
30
$testCase->assertDatabaseMissing('table', [
31
32
+ WhereCondition::make('column2', '<', 42),
33
34
````
0 commit comments