I am building a simple app with Laravel 4 as backend, Angular JS as frontend and MySql.
So far, i am using long polling for any update in database, for this i have to fire $http request from client to server after every 5 minutes.
I need something like Push Notifications which notify a client server that there is an update in database from server side.
I've searched a lot of things but just found Push Notification for Android and iOS only.
Is there any Library or Method available to implement Push Notification for Angular JS in Laravel 4?
Help Please, It would be appreciated.