'integer', ]; public function question(): BelongsTo { return $this->belongsTo(SurveyQuestion::class, 'survey_question_id'); } public function answers(): HasMany { return $this->hasMany(SurveyAnswer::class); } // Tags used to suggest media when a user picks this option. public function tags(): BelongsToMany { return $this->belongsToMany(Tag::class, 'survey_option_tag'); } }