From cb6a4d7f695b680e6b75916a5365fd6c92ee01e5 Mon Sep 17 00:00:00 2001 From: Azizi Date: Thu, 28 Jan 2021 20:32:06 +0330 Subject: [PATCH] register command --- app/Console/Kernel.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index b409e27..fc4784e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -26,7 +26,8 @@ class Kernel extends ConsoleKernel { $schedule->command('today:schedule')->daily(); $schedule->command('today:run')->everyMinute(); - $schedule->command('domain:update_expiry_at')->daily(); + $schedule->command('domain:update_expired_at')->daily(); # update domain expired_at + $schedule->command('domain:update_ssl_expired_at')->daily(); # update SSL expired_at } /**