From 4195ab703a6d4f38dc687b1d355340f1130c94fa Mon Sep 17 00:00:00 2001 From: Ergashev Adizbek Date: Mon, 4 Jan 2021 15:08:52 +0500 Subject: [PATCH] Update quickstart.blade.md (#100) fix laravel 8 code --- 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 c5beff1..7ed55ff 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\Tenant::all()->runForEach(function () { +App\Models\Tenant::all()->runForEach(function () { App\Models\User::factory()->create(); }); ```