Update quickstart.blade.md

Based on the earlier instruction to create App\Tenant the Laravel 8 command must use App\Tenant instead of App\Models\Tenant.
This commit is contained in:
Kirk Jones 2021-04-09 20:53:21 -04:00 committed by GitHub
parent 4a92d9d7ba
commit 5ce7d2737e
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();
});
```