datetimelocal() public method

Creates a datetime local element
See also: Illuminate\FormBuilder\input()
public datetimelocal ( string $name, null $value = null, array $attributes = [] ) : string
$name string The name of the element
$value null
$attributes array
return string
Ejemplo n.º 1
0
 /**
  * Creates a datetime local element
  *
  * @param string $name The name of the element
  * @param null $value
  * @param array $attributes
  * @return string 
  * @see Illuminate\FormBuilder\input()
  * @static 
  */
 public static function datetimelocal($name, $value = null, $attributes = array())
 {
     return \Bootstrapper\Form::datetimelocal($name, $value, $attributes);
 }