From f89b7c860611e78a602e6dc86a225055bcb56c8c Mon Sep 17 00:00:00 2001 From: NikolaiProgramist Date: Fri, 25 Apr 2025 12:31:29 +0300 Subject: [PATCH] Fix russian.md translation --- russian.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/russian.md b/russian.md index 9b31e97..d137add 100644 --- a/russian.md +++ b/russian.md @@ -378,7 +378,7 @@ $users = User::with('profile')->get(); ### **Используйте метод chunk при работе с большим количеством данных** -Bad: +Плохо: ```php $users = $this->get(); @@ -388,7 +388,7 @@ foreach ($users as $user) { } ``` -Good: +Хорошо: ```php $this->chunk(500, function ($users) {