We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f3b056 commit cb55143Copy full SHA for cb55143
Datatable/Column/MultiselectColumn.php
@@ -247,17 +247,17 @@ public function setAttributes($attributes)
247
}
248
249
if (array_key_exists('name', $attributes)) {
250
- $attributes['name'] = $value.' '.$attributes['name'];
+ $attributes['name'] = $attributes['name'].'[]';
251
} else {
252
- $attributes['name'] = $value;
+ $attributes['name'] = $value.'[]';
253
254
if (array_key_exists('class', $attributes)) {
255
$attributes['class'] = $value.' '.$attributes['class'];
256
257
$attributes['class'] = $value;
258
259
260
261
262
263
0 commit comments