'integer']; protected $hidden = ['password_encrypted']; public function account(): BelongsTo { return $this->belongsTo(HostingAccount::class, 'hosting_account_id'); } public function site(): BelongsTo { return $this->belongsTo(HostedSite::class, 'hosted_site_id'); } public function getHostAttribute(): string { return 'localhost'; } }