Add HTML5 date field support.

This commit is contained in:
cviebrock 2012-02-01 00:16:05 -06:00
parent 96b43e90b3
commit 2d413044e8
1 changed files with 13 additions and 0 deletions

View File

@ -305,6 +305,19 @@ public static function number($name, $value = null, $attributes = array())
return static::input('number', $name, $value, $attributes);
}
/**
* Create a HTML date input element.
*
* @param string $name
* @param string $value
* @param array $attributes
* @return string
*/
public static function date($name, $value = null, $attributes = array())
{
return static::input('date', $name, $value, $attributes);
}
/**
* Create a HTML file input element.
*