feat: add mood
This commit is contained in:
@@ -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',
|
||||
// // ]);
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user