Update quickstart.blade.md (#100)

fix laravel 8 code
This commit is contained in:
Ergashev Adizbek 2021-01-04 15:08:52 +05:00 committed by GitHub
parent 2af7ef5a0e
commit 4195ab703a
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();
});
```