© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago
Bagus A

Customize create label for Resource with ManageRecords

In normal resource with it's own create page, we can have
getCreateFormAction
getCreateFormAction
method to customize the label of the create button, for example:
    protected function getCreateFormAction(): Action
    {
        return Action::make('create')
            ->label('Add Customer')
            ->icon('heroicon-o-user')
            ->submit('create')
            ->keyBindings(['mod+s']);
    }
    protected function getCreateFormAction(): Action
    {
        return Action::make('create')
            ->label('Add Customer')
            ->icon('heroicon-o-user')
            ->submit('create')
            ->keyBindings(['mod+s']);
    }


This method doesn't work for simple resource which extending
ManageRecord
ManageRecord
without it's own create page. How do we customize the label in simple resource?
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Customize "create :resource" button label
FilamentFFilament / ❓┊help
2y ago
FilamentPHP v4 Resource: Customize CreateAction Button Position & Label
FilamentFFilament / ❓┊help
2mo ago
Breadcrumbs for ManageRecords
FilamentFFilament / ❓┊help
2y ago
Change the 'Create' label in the resource create page
FilamentFFilament / ❓┊help
2y ago