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