account groups class added
This commit is contained in:
parent
8eb7256abe
commit
ce16490e36
@ -16,13 +16,17 @@ class Account extends Form
|
|||||||
/** @var bool */
|
/** @var bool */
|
||||||
public $hideCurrency;
|
public $hideCurrency;
|
||||||
|
|
||||||
|
/** @var string */
|
||||||
|
public $formGroupClass;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new component instance.
|
* Create a new component instance.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function __construct(bool $hideCurrency = false) {
|
public function __construct(bool $hideCurrency = false, string $formGroupClass = 'sm:col-span-3') {
|
||||||
$this->hideCurrency = $hideCurrency;
|
$this->hideCurrency = $hideCurrency;
|
||||||
|
$this->formGroupClass = $formGroupClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user