新增 UsdtC2C Resource 与页面

This commit is contained in:
2025-06-10 08:26:54 +07:00
parent 4630421e08
commit 827a0e8133
38 changed files with 3532 additions and 31 deletions
+14 -8
View File
@@ -8,16 +8,22 @@
class DatabaseSeeder extends Seeder
{
public function run(): void
{
$this->call(UsdtC2cSeeder::class);
}
/**
* Seed the application's database.
*/
public function run(): void
{
// User::factory(10)->create();
// public function run(): void
// {
// // User::factory(10)->create();
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
]);
}
// User::factory()->create([
// 'name' => 'Test User',
// 'email' => 'test@example.com',
// ]);
// }
}