Browse Source

Merge pull request #1502 from olivervogel/develop

added lists() method to the fluent documentation
Taylor Otwell 12 years ago
parent
commit
e0dfd7c5d3
1 changed files with 6 additions and 0 deletions
  1. 6 0
      laravel/documentation/database/fluent.md

+ 6 - 0
laravel/documentation/database/fluent.md

@@ -54,6 +54,12 @@ You now have a fluent query builder for the "users" table. Using this query buil
 
 	$user = DB::table('users')->get(array('id', 'email as user_email'));
 
+#### Retrieving an array with the values of a given column:
+
+    $users = DB::table('users')->take(10)->lists('email', 'id');
+
+> **Note:** Second parameter is optional
+
 #### Selecting distinct results from the database:
 
 	$user = DB::table('users')->distinct()->get();