Skip to content
Discussion options

You must be logged in to vote
use Filament\Forms\Components\Radio;

Radio::make('status')
    ->options([
        'draft' => 'Draft',
        'scheduled' => 'Scheduled',
        'published' => 'Published'
    ])

protected function mutateFormDataBeforeFill(array $data): array
    {
        $data['status'] = 'scheduled';
        
        return $data;
    }

Try this
Would you mark this answer as solved if it helps you?

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by Goldmayer
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
3 participants