feat: breathing exercise & profile

This commit is contained in:
2025-08-24 19:50:16 +03:30
parent 0e49229621
commit abb53ed969
6 changed files with 133 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class BreathingExercise extends Model
{
public $timestamps = false; // we handle created_at manually
protected $fillable = ['user_id', 'subject', 'duration', 'created_at'];
public function user()
{
return $this->belongsTo(User::class);
}
}