'integer', 'attachment_id' => 'integer', ]; } /** * @return MorphTo */ public function attachable(): MorphTo { return $this->morphTo(); } /** * @return BelongsTo */ public function attachment(): BelongsTo { return $this->belongsTo(Attachment::class, 'attachment_id'); } }