FeedbackType::class, 'status' => FeedbackStatus::class, 'replied_at' => 'datetime', ]; } public function handler(): BelongsTo { return $this->belongsTo(User::class, 'handled_by'); } public function user(): BelongsTo { return $this->belongsTo(User::class); } }