Commit 28fd6ce5 authored by Jens Segers's avatar Jens Segers

Add small example

parent 64154223
......@@ -96,6 +96,10 @@ class User extends Eloquent {
Embedded relations now return an `Illuminate\Database\Eloquent\Collection` rather than a custom Collection class. If you were using one of the special methods that were available, convert them to Collection operations.
```php
$books = $user->books()->sortBy('title');
```
Configuration
-------------
......
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