'integer', 'server_id' => 'integer', ]; /** * @var array */ public static $validationRules = [ 'user_id' => 'required|numeric|exists:users,id', 'server_id' => 'required|numeric|exists:servers,id', ]; /** * Return a hashid encoded string to represent the ID of the subuser. * * @return string */ public function getHashidAttribute() { return app()->make('hashids')->encode($this->id); } /** * Gets the server associated with a subuser. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function server() { return $this->belongsTo(Server::class); } /** * Gets the user associated with a subuser. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function user() { return $this->belongsTo(User::class); } /** * Gets the permissions associated with a subuser. * * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function permissions() { return $this->hasMany(Permission::class); } /** * Return the key that belongs to this subuser for the server. * * @return \Illuminate\Database\Eloquent\Relations\HasOne */ public function key() { return $this->hasOne(DaemonKey::class, 'server_id', 'server_id')->where('daemon_keys.user_id', '=', $this->user_id); } }