modal notification title

How do I change the notification if the create resource is loaded in a modal?

protected function getCreatedNotificationTitle(): ?string
{
return 'Client created successfully!';
}

I can do the above on the edit page but that doesn't change the notification if I create a new client in a modal.

Thanks
Solution
Here is the link (https://filamentphp.com/docs/3.x/actions/prebuilt-actions/create#customizing-the-save-notification) to the docs. An example is below

CreateAction::make()
    ->successNotificationTitle('User registered')
Was this page helpful?