© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•17mo ago•
3 replies
Nuxnux

Notification not being send by reverb`

Hey so i have do it as follow
composer require filament/notifications:"^3.2" -W
composer require filament/notifications:"^3.2" -W

php artisan filament:install --notifications
php artisan filament:install --notifications

To send my notification i do it like this
                Notification::make()
                    ->title('Two days before the reservation ' . $reservation->id)
                    ->actions([
                        Action::make('Link')
                            ->button()
                            ->url(ReservationResource::getUrl('view', ['record' => $reservation])),
                        Action::make('view')
                            ->button()
                    ])
                    ->sendToDatabase($user, isEventDispatched: true);
                Notification::make()
                    ->title('Two days before the reservation ' . $reservation->id)
                    ->actions([
                        Action::make('Link')
                            ->button()
                            ->url(ReservationResource::getUrl('view', ['record' => $reservation])),
                        Action::make('view')
                            ->button()
                    ])
                    ->sendToDatabase($user, isEventDispatched: true);

i have already check the user is a good one
php artisan make:notifications-table
php artisan make:notifications-table
to create the table

i use the same code as the doc to create and send a notification
$recipient = auth()->user();
 
Notification::make()
    ->title('Saved successfully')
    ->sendToDatabase($recipient, isEventDispatched: true);
$recipient = auth()->user();
 
Notification::make()
    ->title('Saved successfully')
    ->sendToDatabase($recipient, isEventDispatched: true);

and then i also started the reverb like this
php artisan reverb:start --debub
php artisan reverb:start --debub

but i still need to reload to see the notification do you know why did i do something bad ?
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

Notification not being sent
FilamentFFilament / ❓┊help
2mo ago
Database Notification not being created
FilamentFFilament / ❓┊help
3y ago
Reverb Not Working
FilamentFFilament / ❓┊help
4w ago
Notification icon colour not being set
FilamentFFilament / ❓┊help
3y ago