Small improvements

This commit is contained in:
2026-05-01 11:00:09 +02:00
parent 7c1125e213
commit d6416d9c6b
3 changed files with 270 additions and 16 deletions
+8
View File
@@ -24,5 +24,13 @@ class DatabaseSeeder extends Seeder
$deveopmentDataSeeder = new DevelopmentDataSeeder();
$deveopmentDataSeeder->execute();
}
switch (env('PROVIDER')) {
case 'bdp-lv-sachsen':
$productionSeeeder = new ProductionDataSeeder();
$productionSeeeder->execute();
break;
case 'development':
}
}
}