© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
11 replies
NeerGreeN

Modify Modal Title

Hello everyone, I have created this class to handle the Resource sub-navigation. I would like to understand how to modify the title in the modal for creating/editing the address.
Solution
    public static function table(Table $table): Table
    {
        return $table
            ->columns([
                //
            ])
            ->filters([
                //
            ])
            ->actions([
                Tables\Actions\EditAction::make(),
            ])
            ->bulkActions([
                Tables\Actions\BulkActionGroup::make([
                    Tables\Actions\DeleteBulkAction::make(),
                ]),
            ])
            ->emptyStateHeading('Nessun risultato')
            ->emptyStateDescription('Crea un contact per iniziare.')
            ->emptyStateIcon('heroicon-o-bookmark');
    }
    public static function table(Table $table): Table
    {
        return $table
            ->columns([
                //
            ])
            ->filters([
                //
            ])
            ->actions([
                Tables\Actions\EditAction::make(),
            ])
            ->bulkActions([
                Tables\Actions\BulkActionGroup::make([
                    Tables\Actions\DeleteBulkAction::make(),
                ]),
            ])
            ->emptyStateHeading('Nessun risultato')
            ->emptyStateDescription('Crea un contact per iniziare.')
            ->emptyStateIcon('heroicon-o-bookmark');
    }


These basics are well documented in the documentation.
https://filamentphp.com/docs/3.x/tables/empty-state
Empty state - Table Builder - Filament
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

modal notification title
FilamentFFilament / ❓┊help
3y ago
Modify modal actions within RelationManager
FilamentFFilament / ❓┊help
3y ago
Customize / translate CreateAction modal title
FilamentFFilament / ❓┊help
3y ago