Update quickstart.blade.md (#86)

Laravel 8 by default create all Models in the models directory.
This commit is contained in:
Frank Sepulveda 2020-09-24 12:26:46 -07:00 committed by GitHub
parent c2c6691f67
commit 18818cc27a
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:
```php
App\Tenant::all()->runForEach(function () {
User::factory()->create();
App\Models\Tenant::all()->runForEach(function () {
App\Models\User::factory()->create();
});
```