v2 beta docs. Upgrade guide Back to v1

Radio

Alternatively check the Group component.

Default attributes

By default, it will look up for:

  • $object->id for option value.
  • $object->name for option display label.

Select one
Select one inline
@php
$users = App\Models\User::take(3)->get();
@endphp
<x-radio label="Select one" wire:model="user1" :options="$users" />
 
<x-radio label="Select one inline" wire:model="user2" :options="$users" inline />

Hint

Select one option
Select one option
@php
$users = [
['id' => 1 , 'name' => 'Administrator', 'hint' => 'Can do anything.' ],
['id' => 2 , 'name' => 'Editor', 'hint' => 'Can not delete.' ],
];
@endphp
 
<x-radio label="Select one option" wire:model="user3" :options="$users" />
 
<x-radio label="Select one option" wire:model="user4" :options="$users" inline />

Alternative attributes

Just set option-value and option-label representing the desired targets.

Select one
@php
$users = [
['custom_key' => 's134' , 'other_name' => 'Mary', 'my_hint' => 'I am Mary' ],
['custom_key' => 'f782' , 'other_name' => 'Joe', 'my_hint' => 'I am Joe' ],
];
@endphp
 
<x-radio
label="Select one"
:options="$users"
wire:model="user5"
option-value="custom_key"
option-label="other_name"
option-hint="my_hint"
/>

Disable options

You can disable options by setting the disabled attribute.

Select one
@php
$users = [
['id' => 1, 'name' => 'John'],
['id' => 2, 'name' => 'Doe'],
['id' => 3, 'name' => 'Mary', 'disabled' => true],
['id' => 4, 'name' => 'Kate'],
];
@endphp
 
<x-radio label="Select one" :options="$users" wire:model="user6" />

Made with by Robson TenĂ³rio and contributors.