'integer', 'user_id' => 'integer', 'created_at' => 'datetime', ]; public function comment(): BelongsTo { return $this->belongsTo(ArtworkComment::class, 'comment_id'); } public function user(): BelongsTo { return $this->belongsTo(User::class); } }