Update laravel/documentation/database/fluent.md
Missing comma
This commit is contained in:
parent
1203473469
commit
be7544b67a
|
@ -124,7 +124,7 @@ ## Nested Where Clauses
|
|||
->or_where(function($query)
|
||||
{
|
||||
$query->where('age', '>', 25);
|
||||
$query->where('votes' '>', 100);
|
||||
$query->where('votes', '>', 100);
|
||||
})
|
||||
->get();
|
||||
|
||||
|
|
Loading…
Reference in New Issue