From 5ce7d2737ec46788ecb1d674b6c11517e788bb59 Mon Sep 17 00:00:00 2001 From: Kirk Jones Date: Fri, 9 Apr 2021 20:53:21 -0400 Subject: [PATCH] Update quickstart.blade.md Based on the earlier instruction to create App\Tenant the Laravel 8 command must use App\Tenant instead of App\Models\Tenant. --- source/docs/v3/quickstart.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/quickstart.blade.md b/source/docs/v3/quickstart.blade.md index 7ed55ff..c5beff1 100644 --- a/source/docs/v3/quickstart.blade.md +++ b/source/docs/v3/quickstart.blade.md @@ -189,7 +189,7 @@ App\Tenant::all()->runForEach(function () { If you use Laravel 8, the the command is slightly different: ```php -App\Models\Tenant::all()->runForEach(function () { +App\Tenant::all()->runForEach(function () { App\Models\User::factory()->create(); }); ```