I created a dashboard using PHP/Laravel framework, and 90% of it's functionalities is done. But I need to do somethings that I can't find a proper way to do it, the most close that I found is cronjobs.
- It needs to executes PHP functions that check the server status, api status, access another website and give me the value of the price of bitcoins every minute.
I thought: "I can do it with cURL PHP and Ajax", but the problem is: It needs to run/work in background, even with the website closed.
How should I do it?