I am working on Laravel project (mostly PHP), and I am using ApiRTC to establish peer-to-peer video calls at a scheduled time.. So, users have a table in the front-end where they can see all scheduled calls based on a database records of course. One of the table rows is scheduled_time, and I want to achieve that when it's a time for a call (for example one call is scheduled for 5PM) also load a button that links to call-room.
Example: I am a user and currently browsing "my calls" page..In 5PM, next to that call appears a button that redirect me to a call-room.
What is the best way to "listen" database row "scheduled_time" and load a button when current time is same as scheduled time.
I am looking for most native solution for this problem, I have some ideas on my mind but it seems that it is not a right way to achieve this.