I am trying to add the database notification to multiple admin panel but....
I am trying to add the database notification to multiple admin panel but I am getting error databasenotification only work for the first default admin panel for user for other it is just throwing error do I need to do anything extra ? By database notification I mean the notification icon on the top right cornor of the panel. ->databasenotification()
7 Replies
Which error do you get?
this is the error I am getting I am little new to the filament so could not find any thing regarding this in the doc.
I have already published the notification table and migrate it.
What is the code you added?
Just added ->databaseNotification() to "ClientPanelProvider". If I remove this "->databaseNotification()" there is no error. But I want a notification panel for client panel as well not only for the admin panel
does your client model has
Notifiable
trait?Thanks @krekas I missed that part now its working fine π
. Thanks alot.