Gregwar\Formidable\Fields\Multiple::getValue PHP Method

getValue() public method

public getValue ( )
    public function getValue()
    {
        $value = array();
        foreach ($this->forms as $index => $form) {
            $value[$index] = $form->getValues();
        }
        return $value;
    }