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

AccountSeeder.php 363B

1234567891011121314151617181920
  1. <?php
  2. namespace Database\Seeders;
  3. use App\Models\Banking\Account;
  4. use Illuminate\Database\Console\Seeds\WithoutModelEvents;
  5. use Illuminate\Database\Seeder;
  6. class AccountSeeder extends Seeder
  7. {
  8. /**
  9. * Run the database seeds.
  10. */
  11. public function run(): void
  12. {
  13. Account::factory()
  14. ->count(5)
  15. ->create();
  16. }
  17. }