Commit 82b9cf8d authored by Jens Segers's avatar Jens Segers

Readme update

parent 5fe429d5
...@@ -91,6 +91,14 @@ Examples ...@@ -91,6 +91,14 @@ Examples
**Distinct** **Distinct**
Distinct is limited to a single column.
$users = Users::distinct('name')->get(); $users = Users::distinct('name')->get();
**Group By**
Grouping does not support sorting and limiting at this moment.
$users = Users::groupBy('title')->get();
All basis insert, update, delete and select methods should be implemented. Feel free to fork and help completing this library! All basis insert, update, delete and select methods should be implemented. Feel free to fork and help completing this library!
\ No newline at end of file
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