I am working on api based on laravel 5.3 version .
It will be similar to the Telegram api , which can respond to various clients written using Android, iOS or the web version (angularjs).
One thing that is an integral part of this kind of api is real-time operation.
According to the survey I did, there is a signalR library for ASP.NET , which makes real-time development of web functions easy for ASP.NET developers.
SignalR supports web sockets and reverts to other compatible methods for older browsers, such as:
Now I wanted to know that for php and, in particular, Laravel, is there a tool that is also easy to write apis in real time?
source share