Nvd\Crud\Form::setValue PHP 메소드

setValue() 보호된 메소드

protected setValue ( )
    protected function setValue()
    {
        $this->value = old($this->name);
        if (empty($this->value) and $this->model) {
            $this->value = $this->model->{$this->name};
        }
        return $this;
    }