Update quickstart.blade.md

fix laravel 8 code
This commit is contained in:
Ergashev Adizbek 2021-01-04 05:06:30 +05:00 committed by GitHub
parent 2af7ef5a0e
commit 460b970891
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();
});
```