@@ -112,7 +112,7 @@ |
||
112 | 112 | protected function startColumn() |
113 | 113 | { |
114 | 114 | // get classname using width array |
115 | - $classname = implode(' ', collect($this->width)->map(function ($value, $key) { |
|
115 | + $classname = implode(' ', collect($this->width)->map(function($value, $key) { |
|
116 | 116 | return "col-$key-$value"; |
117 | 117 | })->toArray()); |
118 | 118 | echo "<div class=\"{$classname}\">"; |
@@ -118,7 +118,7 @@ |
||
118 | 118 | |
119 | 119 | $fieldId = $this->id; |
120 | 120 | |
121 | - $this->options = function ($value) use ($model, $idField, $textField, $fieldId) { |
|
121 | + $this->options = function($value) use ($model, $idField, $textField, $fieldId) { |
|
122 | 122 | $value = request()->old($fieldId, $value); |
123 | 123 | |
124 | 124 | if (empty($value)) { |
@@ -208,7 +208,7 @@ |
||
208 | 208 | |
209 | 209 | $fieldId = $this->id; |
210 | 210 | |
211 | - $this->options = function ($value) use ($model, $idField, $textField, $fieldId) { |
|
211 | + $this->options = function($value) use ($model, $idField, $textField, $fieldId) { |
|
212 | 212 | $value = request()->old($fieldId, $value); |
213 | 213 | |
214 | 214 | if (empty($value)) { |