Send notification to users using notification templates and multi notification channels, it's support Filament Native Notification Service with macro, and a full integration to FCM service worker notifications
I'm encountering an error when using the plugin in any panel other than the admin panel. The error occurs specifically when I try to use the plugin in a custom panel that I created for my SaaS application.
I have three panels in my application:
Admin Panel (owner)
Dashboard Panel
Personal Panel
The issue arises in the Dashboard Panel, which is defined as follows:
class DashboardPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->id('dashboard')
->path('dashboard');
}
}
Steps to Reproduce:
Create multiple panels in a SaaS application (e.g., admin, dashboard, personal).
Attach the plugin to a non-admin panel (e.g., dashboard).
Attempt to use the plugin in the dashboard panel.
Expected Behavior:
The plugin should work seamlessly across all panels, not just in the admin panel.
Actual Behavior:
The plugin generates an error when used in any panel other than the admin panel.
Additional Information:
Panel ID where the issue occurs: dashboard
The plugin works fine in the admin panel.
I'm encountering an error when using the plugin in any panel other than the admin panel. The error occurs specifically when I try to use the plugin in a custom panel that I created for my SaaS application.
I have three panels in my application:
Admin Panel (owner) Dashboard Panel Personal Panel
The issue arises in the Dashboard Panel, which is defined as follows:
Steps to Reproduce:
Expected Behavior:
The plugin should work seamlessly across all panels, not just in the admin panel.
Actual Behavior:
The plugin generates an error when used in any panel other than the admin panel.
Additional Information:
Panel ID where the issue occurs: dashboard The plugin works fine in the admin panel.