Encore\Admin\Form\Field::fill PHP Метод

fill() публичный Метод

Fill data to the field.
public fill ( $data ) : void
$data
Результат void
    public function fill($data)
    {
        if (is_array($this->column)) {
            foreach ($this->column as $key => $column) {
                $this->value[$key] = array_get($data, $column);
            }
            return;
        }
        $this->value = array_get($data, $this->column);
    }