Skip to content

Commit a6bc2f5

Browse files
committed
Updating readme
1 parent 6c6dd00 commit a6bc2f5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ The MongoDB query builder allows you to execute queries, just like the original
7070
$users = MDB::collection('users')->get();
7171
$user = MDB::collection('users')->where('name', 'John')->first();
7272

73+
Read more about the query builder on http://laravel.com/docs/queries
74+
7375
More examples
7476
-------------
7577

@@ -173,3 +175,5 @@ You may also specify additional columns to update:
173175

174176
User::where('age', '29')->increment('age', 1, array('group' => 'thirty something'));
175177
User::where('bmi', 30)->decrement('bmi', 1, array('category' => 'overweight'));
178+
179+
Read more about the Eloquent on http://laravel.com/docs/eloquent

0 commit comments

Comments
 (0)