feat: breath template & breath session

This commit is contained in:
2025-08-25 17:58:45 +03:30
parent b013feebfa
commit c4305382cc
8 changed files with 238 additions and 11 deletions
+9 -5
View File
@@ -8,16 +8,20 @@
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*/
public function run(): void
{
// User::factory(10)->create();
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
]);
$this->call([
BreathingTemplateSeeder::class,
]);
// User::factory()->create([
// 'name' => 'Test User',
// 'email' => 'test@example.com',
// ]);
}
}