feat: add survey

This commit is contained in:
2026-08-20 15:44:56 +03:30
parent 27413ae827
commit ffdae46038
3 changed files with 65 additions and 0 deletions
+5
View File
@@ -143,4 +143,9 @@ public function savedMedia()
return $this->belongsToMany(Media::class, 'saved_media')->withTimestamps();
}
public function surveyAnswers()
{
return $this->hasMany(SurveyAnswer::class);
}
}