feat: implement BrandSeeder and CategorySeeder and register them in DatabaseSeeder

This commit is contained in:
2026-06-29 10:02:12 -03:00
parent 74e443ece1
commit 9d3ed17c00
3 changed files with 74 additions and 1 deletions

View File

@@ -22,6 +22,10 @@ class DatabaseSeeder extends Seeder
'email' => 'test@example.com',
]);
$this->call(TenantSeeder::class);
$this->call([
TenantSeeder::class,
CategorySeeder::class,
BrandSeeder::class,
]);
}
}