feat: add mood

This commit is contained in:
2025-08-27 13:45:21 +03:30
parent 8f9829fc1f
commit 01b67d8f80
8 changed files with 197 additions and 14 deletions
+15 -12
View File
@@ -8,20 +8,23 @@
class DatabaseSeeder extends Seeder
{
public function run(): void
{
$this->call(MoodSeeder::class);
}
/**
* Seed the application's database.
*/
public function run(): void
{
// User::factory(10)->create();
$this->call([
BreathingTemplateSeeder::class,
]);
// User::factory()->create([
// 'name' => 'Test User',
// 'email' => 'test@example.com',
// ]);
}
// public function run(): void
// {
// // User::factory(10)->create();
// $this->call([
// BreathingTemplateSeeder::class,
// ]);
// // User::factory()->create([
// // 'name' => 'Test User',
// // 'email' => 'test@example.com',
// // ]);
// }
}