Exemplo n.º 1
0
 /**
  * Makes the button a submit button
  *
  * @return $this 
  * @static 
  */
 public static function submit()
 {
     return \Bootstrapper\Button::submit();
 }
Exemplo n.º 2
0
 /**
  * Create a HTML submit input element.
  * Overriding the default input submit 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 submit($value = null, $attributes = array(), $hasDropdown = false)
 {
     return Button::submit($value, $attributes, $hasDropdown);
 }