* * @version 1.0.0 */ class DevSeeder extends Seeder { /** * Seed the application's database. */ public function run(): void { $this->call(RoleSeeder::class); $this->call(UserSeeder::class); $this->call(SettingSeeder::class); $this->call(CatalogNameImgSeeder::class); $this->call(MunicipalitySeeder::class); $this->call(ModuleSeeder::class); $this->call(CatalogTagStatusSeeder::class); $this->call(CatalogCancellationReasonSeeder::class); } }