#Realtime Sync

1 messages · Page 1 of 1 (latest)

distant hemlock
#

I’m building a Laravel + NativePHP (iOS) app. Right now I can sync data via API calls, but it’s manual.

Is there a way to make real-time sync work (e.g. with Laravel Reverb/WebSockets, or push notifications)? And if so, how exactly would you connect Laravel events to update the NativePHP app automatically?

still dome
#

Reverb and push notifications work great. What is it you’re trying to do?

distant hemlock
#

Right now I can sync data via API calls, but it’s manual, i have to trigger it via a button in my app. But i want to to sync it in realtime and automatically, like a background job or something like that, that sync my data.