1
I have a Function in php/Laravel, and would like to fire this Function every 2 hours and 35 minutes.
My question is: Using Laravel, as I create correctly, a cron to trigger this function in this time range?
1
I have a Function in php/Laravel, and would like to fire this Function every 2 hours and 35 minutes.
My question is: Using Laravel, as I create correctly, a cron to trigger this function in this time range?
Browser other questions tagged php laravel laravel-5 php-7 cron
You are not signed in. Login or sign up in order to post.
not pq the top shows how to do 24h I want to know how would be to do 2:35h at 2:35h and following as mentioned here did not work @Darleifernandozillmer
– Tiago Ferezin
It’s the same thing, you just need to set the times that will run, you can use twiceDaily(0, 2, 4, 6, 8, ...) for this.
– Darlei Fernando Zillmer
ah yes thank you
– Tiago Ferezin