Update quickstart.blade.md

Snippet user creating for Laravel 8 is slightly wrong.
This commit is contained in:
Anton 2020-11-11 01:00:27 +01:00 committed by GitHub
parent 09be50d4ca
commit b9c7ada3e3
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\Models\Tenant::all()->runForEach(function () {
App\Tenant::all()->runForEach(function () {
App\Models\User::factory()->create();
});
```