Skip to content

Commit 88d1243

Browse files
authored
Replace underscores with spaces in labels
1 parent f8088b9 commit 88d1243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

views/container.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@if($rawLabel ?? false)
99
{!! $rawLabel !!}
1010
@else
11-
{{ $label ?? \Illuminate\Support\Str::title($name) }}
11+
{{ $label ?? str_replace('_', ' ', \Illuminate\Support\Str::title($name)) }}
1212
@endif
1313
</label>
1414
@endunless

0 commit comments

Comments
 (0)