Tuesday, March 14, 2017

Laravel Task Scheduling Every X Hours

I undestand that you can create hourly tasks on Laravel by using:

$schedule->command('catalog:update')->hourly();

however is there a way to do for example every 2 hours or 5 hours? I couldn't find it on documentation or here.



via senty

Advertisement