您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TestDatabaseSeeder.php 470B

123456789101112131415161718192021
  1. <?php
  2. namespace Database\Seeders;
  3. use App\Models\User;
  4. use Illuminate\Database\Seeder;
  5. class TestDatabaseSeeder extends Seeder
  6. {
  7. public function run(): void
  8. {
  9. User::factory()
  10. ->withPersonalCompany()
  11. ->createQuietly([
  12. 'name' => 'Test Company Owner',
  13. 'email' => 'test@gmail.com',
  14. 'password' => bcrypt('password'),
  15. 'current_company_id' => 1,
  16. ]);
  17. }
  18. }