Implementing a Notification System in a Laravel ERP API for Real-time User Updates

Hello guys I have a question regarding notifications in a Laravel API. I have a Laravel ERP API that's used by various front-ends, and I'm interested in implementing a notification system for actions like product deletion or order approval. Do you have any recommendations for packages or methods that could help me achieve this? Thank you for your assistance.
2 Replies
Solution
tuto1902
tuto19027mo ago
I would recommend checking out the Broadcasting section of the laravel docs. You can configure your events to send broadcasting signals to various services like Pusher or Ably. There's also support for non-commercial solutions like Laravel WebSockets or Soketi https://laravel.com/docs/10.x/broadcasting https://docs.soketi.app/ https://beyondco.de/docs/laravel-websockets/getting-started/introduction
Laravel - The PHP Framework For Web Artisans
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
soketi
Soketi is your simple, fast, and resilient open-source WebSockets server. 📣
Beyond Code
Laravel Websockets - Introduction
We focus on building tools that make your life as developer more enjoyable and love sharing our broad knowledge that we gain during this process.
Meotler
Meotler7mo ago
@tuto1902 thanks so much ❤️