© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
4 replies
Fhacker

I change title in edit modal

(sorry for my bad english)
I workin in this class

use Filament\Resources\RelationManagers\RelationManager;
class EmitterEntitiesRelationManager extends RelationManager
{
...
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('entity.name')
->getStateUsing(function ($record) {
return $record->entity->name;
})->label('Entidad principal'),
])
->filters([
//
])
->headerActions([])
->actions([
Tables\Actions\EditAction::make()

/HERE... i change the title in edit action (i change Edit 1 for custom title)/

->mutateRecordDataUsing(function (array $data): array {
$data['api_password'] = Crypt::decryptString($data['api_password']);
$data['signer_password'] = Crypt::decryptString($data['signer_password']);

return $data;
}),
Tables\Actions\DeleteAction::make(),

])
->bulkActions([
Tables\Actions\DeleteBulkAction::make(),
]);
}
I try

Tables\Actions\EditAction::make()->title('CUSTOM title!') // But, title method dont exists

and try

Tables\Actions\EditAction::make()
->before(function (Tables\Actions\EditAction $action, RelationManager $livewire) {
Notification::make()
->title('CUSTOM title!');
});
// But this dont change anything

thank you for you help
image.png
Solution
->modalHeading('my title') on the action
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Change edit modal width
FilamentFFilament / ❓┊help
2y ago
Change the title on relation manager modal
FilamentFFilament / ❓┊help
3y ago
Change title in Infolist.
FilamentFFilament / ❓┊help
2y ago