'integer', ]; public function question(): BelongsTo { return $this->belongsTo(SurveyQuestion::class, 'survey_question_id'); } public function answers(): HasMany { return $this->hasMany(SurveyAnswer::class); } }