Fix typo in README

This commit is contained in:
Wilsen Hernández
2021-02-27 11:29:39 -04:00
committed by GitHub
parent b21324b20e
commit aaade4eab9
+1 -1
View File
@@ -206,7 +206,7 @@ Or can be ignored by setting the `ignored_models` config
#### Magic `where*` methods #### Magic `where*` methods
Eloquent allows calling `where<Attribute>` on your modes, e.g. `Post::whereTitle(…)` and automatically translates this to e.g. `Post::where('title', '=', '…')`. Eloquent allows calling `where<Attribute>` 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`. 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`.