No Description

DatabaseSeeder.php 436B

1234567891011121314151617181920
  1. <?php
  2. use Illuminate\Database\Seeder;
  3. class DatabaseSeeder extends Seeder
  4. {
  5. /**
  6. * Seed the application's database.
  7. *
  8. * @return void
  9. */
  10. public function run()
  11. {
  12. $this->call(CourseSeeder::class);
  13. $this->call(SectionSeeder::class);
  14. $this->call(ProfessorSeeder::class);
  15. $this->call(ProfessorSectionSeeder::class);
  16. $this->call(ProfessorSemesterSeeder::class);
  17. }
  18. }