فهرست منبع

增加 defaultWidth 函数

Edwin Xu 3 سال پیش
والد
کامیت
d9f9070f1e
1فایلهای تغییر یافته به همراه13 افزوده شده و 0 حذف شده
  1. 13 0
      src/Form/Row.php

+ 13 - 0
src/Form/Row.php

@@ -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.
      *