How to pass data from a cron job to a controller in Laravel?
We have a Laravel command called WordOfTheHour. In it I am connection to the database and pick a random word from a table with 9,500 records. How to pass this data from the cron to the controller?
Should it be some kind of POST request?