I am using Laravel schedule task and I have two cron jobs:
One has to run at 00:10
And another one at 08:00
I wanted to know if I set my cron job to this:
*/10 * * * * php .../artisan schedule:run
will this run my jobs? what if this cron job run at these times: 01:05, 01:15, 01:25,... will this run my job at 00:10 if it passes from that time?
And what else could be the best cron job for this situation?