We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a450ee commit 7963072Copy full SHA for 7963072
database/collection.md
@@ -193,7 +193,7 @@ The `DataFeed` class mimics a regular model and supports `limit` and `paginate`
193
The next example will combine the User, Post and Comment models in to a single collection and returns the first 10 records.
194
195
```php
196
-$feed = new Winter\Storm\Database\DataFeed;
+$feed = new \Winter\Storm\Database\DataFeed;
197
$feed->add('user', new User);
198
$feed->add('post', Post::where('category_id', 7));
199
0 commit comments