FilamentF
Filament3y ago
Abi

Inline Radio Buttons with the form label on a separate line

I have the following code

 Radio::make('claim_type')
                    ->label('Claim Type')
                    ->inlineLabel(false)
                    ->options([
                        'damage' => 'Damage',
                        'lost' => 'Lost',
                        'stolen' => 'Stolen',
                    ])->inline()->columns(1),

How do I make the label Claim Type to be in its own line?
CleanShot_2023-05-23_at_21.25.50.png
Was this page helpful?