We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf39d82 + 2df3388 commit 9ed23aaCopy full SHA for 9ed23aa
src/resources/views/crud/columns/select_multiple.blade.php
@@ -6,6 +6,7 @@
6
$column['suffix'] = $column['suffix'] ?? '';
7
$column['limit'] = $column['limit'] ?? 32;
8
$column['attribute'] = $column['attribute'] ?? (new $column['model'])->identifiableAttribute();
9
+ $column['separator'] = $column['separator'] ?? ',';
10
11
if($column['value'] instanceof \Closure) {
12
$column['value'] = $column['value']($entry);
@@ -40,7 +41,7 @@
40
41
@endif
42
@includeWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_end')
43
- @if(!$loop->last), @endif
44
+ @if(!$loop->last){{$column['separator']}}@endif
45
</span>
46
@endforeach
47
{{ $column['suffix'] }}
0 commit comments