diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 9e0881a..c85c071 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -29,10 +29,7 @@ class Kernel extends ConsoleKernel }); $schedule->command('digest:send --fortnightly') - ->weeklyOn(5, '00:01') - ->when(function () { - return (time() / 604800 % 2); - }) + ->twiceMonthly(1,16,'13:00') ->onFailure(function () { Log::error("Fortnightly email digest send failed"); });