From 995e8718344f8a769bf3dc2133bfffe82fbf1aee Mon Sep 17 00:00:00 2001 From: Mauro Date: Wed, 18 Apr 2018 14:36:43 -0400 Subject: [PATCH] Update README.md Fixed flush command. Changed from modelCaching:clear to modelCache:clear. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e599355..c2505c5 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ $results = $myModel->disableCache()->where('field', $value)->get(); ### Manual Flushing of Specific Model You can flush the cache of a specific model using the following artisan command: ```sh -php artisan modelCaching:clear --model=App\Model +php artisan modelCache:clear --model=App\Model ``` This comes in handy when manually making updates to the database. You could also