the video need this field in the comment model, the audio model doesn't need it, can I still establish a polymorphic relationship with this ?
Yeah you can
class Comment extends Model { public function commentable() { return $this->morphTo(); } // Other model code... }
Обсуждают сегодня