Nvd\Crud\Form::input PHP Method

input() public static method

only for select element
public static input ( $name, $type = 'text' )
    public static function input($name, $type = 'text')
    {
        $elem = static::createElement($name, 'input');
        $elem->attributes['type'] = $type;
        return $elem;
    }