Merge pull request #1123 from daris/patch-1

Update laravel/documentation/database/fluent.md
This commit is contained in:
Taylor Otwell
2012-09-01 17:53:14 -07:00

View File

@@ -124,7 +124,7 @@ You may discover the need to group portions of a WHERE clause within parentheses
->or_where(function($query)
{
$query->where('age', '>', 25);
$query->where('votes' '>', 100);
$query->where('votes', '>', 100);
})
->get();