Skip to content

Commit 2acd8a7

Browse files
committed
fix readme
1 parent 48a66b8 commit 2acd8a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@ $user = User::get('1');
124124
**Retrieving Records By Ida**
125125

126126
```php
127-
$user = User::getMany(['1', '2']);
127+
$users = User::getMany(['1', '2']);
128128
```
129129

130130
**Wheres**
131131

132132
```php
133-
$users = User::get()->('first_name', 'Bob');
133+
$users = User::get()->where('first_name', 'Bob');
134134
```
135135

136136
For more information check https://laravel.com/docs/collections

0 commit comments

Comments
 (0)