Skip to content

Commit 5f5c8f1

Browse files
committed
fix
1 parent f9b1af3 commit 5f5c8f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/components/button/radio.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
@php
1111
$input = $attributes->filter(function ($value, $key) {
12-
return in_array($key, ['name', 'value']) || Str::startsWith($key, ['x-model', 'wire:model']);
12+
return in_array($key, ['name', 'value']) || Str::startsWith($key, ['x-bind:value', 'x-model', 'wire:model']);
1313
});
1414
$label = $attributes->except(array_keys($input->all()))->class([
1515
//

0 commit comments

Comments
 (0)