How to show notifications in Filament Admin Panel only (multi-panel setup) triggered by API endpoint
I'm using Laravel with Filament v3, and my app has multiple Filament panels such as Admin, Courier, etc. I want to trigger a notification in the Admin Panel only whenever the mobile app makes a POST request to the /api/orders endpoint to create a new order.
I’ve tried calling Notification::make() directly in the API controller, but it doesn’t display anything on the Admin dashboard. I’m guessing it’s because API requests don’t interact with the Filament UI directly.
Is there a proper way to trigger real-time notifications in the Filament Admin panel (but not in other panels) when an external event like an API call occurs
I’ve tried calling Notification::make() directly in the API controller, but it doesn’t display anything on the Admin dashboard. I’m guessing it’s because API requests don’t interact with the Filament UI directly.
Is there a proper way to trigger real-time notifications in the Filament Admin panel (but not in other panels) when an external event like an API call occurs