Commit c17c872b by Taylor Otwell

Merge pull request #1123 from daris/patch-1

Update laravel/documentation/database/fluent.md
parents e8046847 be7544b6
...@@ -124,7 +124,7 @@ You may discover the need to group portions of a WHERE clause within parentheses ...@@ -124,7 +124,7 @@ You may discover the need to group portions of a WHERE clause within parentheses
->or_where(function($query) ->or_where(function($query)
{ {
$query->where('age', '>', 25); $query->where('age', '>', 25);
$query->where('votes' '>', 100); $query->where('votes', '>', 100);
}) })
->get(); ->get();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment