FilamentF
Filament2y ago
MZX

Change the 'Create' label in the resource create page

I just want to change the color and the text inside
Solution
Here's how

protected function getCreateFormAction(): Action
    {
        return Action::make('create')
            ->label('Pay')
            ->submit('create')
            ->color('success');

    }
Was this page helpful?