method() !== 'POST') { return DatabaseHost::getUpdateRulesForId($this->route()->parameter('host')); } return DatabaseHost::getCreateRules(); } /** * Modify submitted data before it is passed off to the validator. * * @return \Illuminate\Contracts\Validation\Validator */ protected function getValidatorInstance() { if (! $this->filled('node_id')) { $this->merge(['node_id' => null]); } $this->merge([ 'host' => gethostbyname($this->input('host')), ]); return parent::getValidatorInstance(); } }