finished api

This commit is contained in:
Clément
2025-06-04 19:50:52 +02:00
parent 1551f6226e
commit f488f7e01d
32 changed files with 1078 additions and 30 deletions

View File

@@ -11,13 +11,11 @@ class DatabaseSeeder extends Seeder
/**
* Seed the application's database.
*/
public function run(): void
{
// User::factory(10)->create();
public function run(): void{
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
]);
// User::factory()->create([
// 'name' => 'Test User',
// 'email' => 'test@example.com',
// ]);
}
}