|
@@ -167,6 +167,19 @@ class Row implements Renderable
|
|
|
return $this->form->model();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Set default width for field.
|
|
|
+ *
|
|
|
+ * @param int $width
|
|
|
+ * @return $this
|
|
|
+ */
|
|
|
+ public function defaultWidth(int $width = 12)
|
|
|
+ {
|
|
|
+ $this->defaultFieldWidth = $width;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Set width for a incomming field.
|
|
|
*
|