From dcb8a7dd5a84acb9714740e12b0c2748201b8f73 Mon Sep 17 00:00:00 2001 From: saeid Date: Thu, 29 Dec 2022 20:21:47 +0330 Subject: [PATCH] fix --- app/Console/Kernel.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 58d5f72..966a6a0 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -30,6 +30,8 @@ class Kernel extends ConsoleKernel $schedule->command('domain:update_ssl_expiry_date')->daily(); # update SSL expired_at $schedule->command('domain:update_domain_expiry_date')->daily(); # update domain expired_at $schedule->command('make:sitemap')->daily(); # make sitemap + $schedule->command('sum:statistics')->daily(); # statistics to statistic-charts + $schedule->command('remove:statistics')->lastDayOfMonth(); # remove data from statistics and ad to file } /**