Update quickstart.blade.md (#92)

Snippet user creating for Laravel 8 is slightly wrong.
This commit is contained in:
Anton 2020-11-13 08:16:44 +01:00 committed by GitHub
parent ec41639ae9
commit cc75be1c1b
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: If you use Laravel 8, the the command is slightly different:
```php ```php
App\Models\Tenant::all()->runForEach(function () { App\Tenant::all()->runForEach(function () {
App\Models\User::factory()->create(); App\Models\User::factory()->create();
}); });
``` ```