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

input() 공개 정적인 메소드

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;
    }