RealTime Notification system using Laravel 5.5
Learn how to build RealTime Notification system using Laravel 5.5. In this series, I am going to use Laravel Echo, Pusher js and Vue js. Laravel provides support for sending notifications across a variety of delivery channels, including mail, SMS (via Nexmo), and Slack. Notifications may also be stored in a database so they may be displayed in your web interface. You should refer to Laravel Documentation for better understanding, for more examples and for finding different ways of doing something other than from what I have taught you. This series includes the following videos Installation Notification Broadcasting Correcting Common Mistakes made by Users Inside .env file, check whether you have changed BROADCAST_DRIVER=log to BROADCAST_DRIVER=pusher Inside app.php file inside the config folder, check whether you have uncommented App\Providers\BroadcastServiceProvider::class, Don't forg...