We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d4f36b commit d7b3b04Copy full SHA for d7b3b04
1 file changed
README.md
@@ -102,7 +102,9 @@ $post = Post::find_by_name_and_id('The Bridge Builder',100);
102
$post = Post::find_by_name_or_id('The Bridge Builder',100);
103
104
# find with conditions
105
-$posts = Post::all()->where('name=? or id > ?','The Bridge Builder',100);
+foreach(Post::all()->where('name=? or id > ?','The Bridge Builder',100) as $post) {
106
+ echo $post->name;
107
+};
108
```
109
110
### Create ###
0 commit comments