Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions russian.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ $users = User::with('profile')->get();

### **Используйте метод chunk при работе с большим количеством данных**

Bad:
Плохо:

```php
$users = $this->get();
Expand All @@ -388,7 +388,7 @@ foreach ($users as $user) {
}
```

Good:
Хорошо:

```php
$this->chunk(500, function ($users) {
Expand Down