Skip to content

Commit 4803b56

Browse files
damsfxLukeTowers
andauthored
Add note when using count greater than one on relationships (#183)
Co-authored-by: Luke Towers <[email protected]>
1 parent 6e2e294 commit 4803b56

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

database/relations.md

+2
Original file line numberDiff line numberDiff line change
@@ -791,6 +791,8 @@ You may also specify an operator and count to further customize the query:
791791
$posts = Post::has('comments', '>=', 3)->get();
792792
```
793793

794+
> **NOTE**: MySQL strict mode can sometimes complain when using a `GROUP` column without a `GROUP BY` clause (in the above case, `COUNT()`). You can set the `strict` option to `false` in your database's connection configuration (i.e. `database.connections.mysql.strict`) to ignore this warning message.
795+
794796
Nested `has` statements may also be constructed using "dot" notation. For example, you may retrieve all posts that have at least one comment and vote:
795797

796798
```php

0 commit comments

Comments
 (0)