'int', 'old_node' => 'int', 'new_node' => 'int', 'old_allocation' => 'int', 'new_allocation' => 'int', 'old_additional_allocations' => 'array', 'new_additional_allocations' => 'array', 'successful' => 'bool', 'archived' => 'bool', ]; /** * @var array */ public static $validationRules = [ 'server_id' => 'required|numeric|exists:servers,id', 'old_node' => 'required|numeric', 'new_node' => 'required|numeric', 'old_allocation' => 'required|numeric', 'new_allocation' => 'required|numeric', 'old_additional_allocations' => 'nullable|array', 'old_additional_allocations.*' => 'numeric', 'new_additional_allocations' => 'nullable|array', 'new_additional_allocations.*' => 'numeric', 'successful' => 'sometimes|nullable|boolean', ]; /** * Gets the server associated with a server transfer. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function server() { return $this->belongsTo(Server::class); } /** * Gets the source node associated with a server transfer. * * @return \Illuminate\Database\Eloquent\Relations\HasOne */ public function oldNode() { return $this->hasOne(Node::class, 'id', 'old_node'); } /** * Gets the target node associated with a server transfer. * * @return \Illuminate\Database\Eloquent\Relations\HasOne */ public function newNode() { return $this->hasOne(Node::class, 'id', 'new_node'); } }