From c631b2e2b635aaeaadfa585cf1d0fc0c46b47140 Mon Sep 17 00:00:00 2001 From: Azizi Date: Thu, 28 Jan 2021 20:20:52 +0330 Subject: [PATCH] feat: create 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 b29a22f..b409e27 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel * @var array */ protected $commands = [ - // + ]; /** @@ -26,6 +26,7 @@ class Kernel extends ConsoleKernel { $schedule->command('today:schedule')->daily(); $schedule->command('today:run')->everyMinute(); + $schedule->command('domain:update_expiry_at')->daily(); } /**