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.

32 lines
1020 B

<?php
namespace Database\Seeders;
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*/
public function run(): void
{
$this->call(AdminInitSeeder::class);
$this->call(SystemExtensionSeeder::class);
$this->call(WorkbenchMenusSeeder::class);
$this->call(CourseDictionarySeeder::class);
$this->call(ActivityDictionarySeeder::class);
$this->call(NewsDictionarySeeder::class);
$this->call(TeacherDictionarySeeder::class);
$this->call(TalentMenusSeeder::class);
$this->call(DataAssetsMenusSeeder::class);
$this->call(CrawlSourcesSeeder::class);
$this->call(TeacherSampleSeeder::class);
$this->call(PaperSampleSeeder::class);
$this->call(DemandDictionarySeeder::class);
$this->call(DemandSampleSeeder::class);
$this->call(MiniappUserSampleSeeder::class);
}
}