feat: worry box feature implemented

This commit is contained in:
2025-08-31 14:50:08 +03:30
parent 58ddf66c12
commit ed377842c9
9 changed files with 221 additions and 16 deletions
+4
View File
@@ -16,4 +16,8 @@ public function mood()
{
return $this->belongsTo(Mood::class);
}
public function notes()
{
return $this->morphMany(Note::class, 'noteable');
}
}