the bola v2 website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DatabaseSeeder.php 282B

123456789101112131415161718
  1. <?php
  2. namespace Database\Seeders;
  3. use Illuminate\Database\Seeder;
  4. class DatabaseSeeder extends Seeder
  5. {
  6. /**
  7. * Seed the application's database.
  8. *
  9. * @return void
  10. */
  11. public function run()
  12. {
  13. // \App\Models\User::factory(10)->create();
  14. }
  15. }