From 18818cc27ae7bd58ba8862df6add164e6f5b5ca7 Mon Sep 17 00:00:00 2001 From: Frank Sepulveda Date: Thu, 24 Sep 2020 12:26:46 -0700 Subject: [PATCH] Update quickstart.blade.md (#86) Laravel 8 by default create all Models in the models directory. --- source/docs/v3/quickstart.blade.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/docs/v3/quickstart.blade.md b/source/docs/v3/quickstart.blade.md index bdb980a..7ed55ff 100644 --- a/source/docs/v3/quickstart.blade.md +++ b/source/docs/v3/quickstart.blade.md @@ -189,8 +189,8 @@ App\Tenant::all()->runForEach(function () { If you use Laravel 8, the the command is slightly different: ```php -App\Tenant::all()->runForEach(function () { - User::factory()->create(); +App\Models\Tenant::all()->runForEach(function () { + App\Models\User::factory()->create(); }); ```