'bool', ]; public function user(): BelongsTo { return $this->belongsTo(User::class); } public function handledBy(): BelongsTo { return $this->belongsTo(User::class, 'handled_by_id'); } public function hostUser(): BelongsTo { return $this->belongsTo(User::class, 'host_user_id'); } }