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');
    }


These basics are well documented in the documentation.
https://filamentphp.com/docs/3.x/tables/empty-state
Was this page helpful?