Updated migrations

This commit is contained in:
2025-03-15 20:05:27 +01:00
parent e9b18c94fc
commit e653fbf5fa
8 changed files with 52 additions and 13 deletions
+7
View File
@@ -16,6 +16,13 @@ class DatabaseSeeder extends Seeder
public function run(): void
{
User::factory(10)->create();
User::create([
'name' => 'Admin',
'email' => 'admin@local',
'password' => bcrypt('password')
]);
$this ->call(
ColorSeeder::class,
ManufacturerSeeder::class