Update laravel/documentation/database/fluent.md

Missing comma
This commit is contained in:
daris
2012-08-19 19:05:45 +03:00
parent 1203473469
commit be7544b67a

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();