Exemplo n.º 1
0
 /**
  * Makes the button a reset button
  *
  * @return $this 
  * @static 
  */
 public static function reset()
 {
     return \Bootstrapper\Button::reset();
 }
Exemplo n.º 2
0
 /**
  * Create a HTML reset input element.
  * Overriding the default input reset button from Laravel\Form
  *
  * @param string $value text value of button
  * @param array $attributes array of attributes for button
  * @param bool $hasDropdown button has dropdown
  *
  * @return string
  */
 public static function reset($value = null, $attributes = array(), $hasDropdown = false)
 {
     return Button::reset($value, $attributes, $hasDropdown);
 }