From aaade4eab932efe3841306ad7faf9ef1a8cef391 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wilsen=20Hern=C3=A1ndez?= <13445515+wilsenhc@users.noreply.github.com> Date: Sat, 27 Feb 2021 11:29:39 -0400 Subject: [PATCH] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9938b05..01f6133 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ Or can be ignored by setting the `ignored_models` config #### Magic `where*` methods -Eloquent allows calling `where` on your modes, e.g. `Post::whereTitle(…)` and automatically translates this to e.g. `Post::where('title', '=', '…')`. +Eloquent allows calling `where` on your models, e.g. `Post::whereTitle(…)` and automatically translates this to e.g. `Post::where('title', '=', '…')`. If for some reason it's undesired to have them generated (one for each column), you can disable this via config `write_model_magic_where` and setting it to `false`.