Update quickstart.blade.md

Laravel 8 by default create all Models in the models directory.
This commit is contained in:
Frank Sepulveda 2020-09-24 12:08:53 -07:00 committed by GitHub
parent c2c6691f67
commit 0ce4c337b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -189,8 +189,8 @@ 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\Tenant::all()->runForEach(function () { App\Models\Tenant::all()->runForEach(function () {
User::factory()->create(); App\Models\User::factory()->create();
}); });
``` ```