Filament database notifications not loaded
I am creating small app where used both Laravel breeze and filament. For manage login i used guards web and admin. Breeze side did custom code to display notifications but filament side notifications not loaded.

Solution:Jump to solution
in production you need something called Supervisor, then create config to make the artisan queue:work to run in the background, so you can safely leave the terminal without ever running artisan queue:work anymore
6 Replies
did you run php artisan queue:work on the terminal?
no
i want to load from database directly for see user events.
Could you please help me
not working.
Hi @Mafdet
https://filamentphp.com/docs/2.x/notifications/installation
https://filamentphp.com/docs/3.x/notifications/installation
Filament v1 not supported, I think.
Follow this guideline first, then see if the problem still exist?
Can it work without queue?
Its working if queue running. and its not working which notification created in laravel notification because type is totally change.
Solution
in production you need something called Supervisor, then create config to make the artisan queue:work to run in the background, so you can safely leave the terminal without ever running artisan queue:work anymore
Thanks mate