© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
4 replies
ChesterS

Show Filament notification when database notification is received

Is there a built in way to render/show a Filament notification when a database notification is received?

For example let's say I have this code

Notification::make()
    ->title('Saved successfully')
    ->sendToDatabase($someUser);

event(new DatabaseNotificationsSent($someUser));
Notification::make()
    ->title('Saved successfully')
    ->sendToDatabase($someUser);

event(new DatabaseNotificationsSent($someUser));


Is there a built-in way to actually render that notification when
$someUser
$someUser
receives it? So they would see the equivalent of
Notification::make()
    ->title('Saved successfully')
    ->send();
Notification::make()
    ->title('Saved successfully')
    ->send();

If not, is there a callback or some sort of hook/event that's triggered so I can do this manually?

Thank you.
Solution
I think you need to check broadcasting notifications: https://filamentphp.com/docs/3.x/notifications/broadcast-notifications
Broadcast notifications - Notifications - 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

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Refresh a table when notification received
FilamentFFilament / ❓┊help
3y ago
How to show Filament Notification on unsavedChangesAlerts?
FilamentFFilament / ❓┊help
14mo ago
Laravel 11 Filament 3 database notification help
FilamentFFilament / ❓┊help
2y ago
Database Notification
FilamentFFilament / ❓┊help
3y ago