1234567891011121314151617181920 |
- <?php
-
- use Illuminate\Database\Seeder;
-
- class DatabaseSeeder extends Seeder
- {
- /**
- * Seed the application's database.
- *
- * @return void
- */
- public function run()
- {
- $this->call(CourseSeeder::class);
- $this->call(SectionSeeder::class);
- $this->call(ProfessorSeeder::class);
- $this->call(ProfessorSectionSeeder::class);
- $this->call(ProfessorSemesterSeeder::class);
- }
- }
|