From e4fd921ab1de47fe46ef31ba89111a37184158a9 Mon Sep 17 00:00:00 2001 From: liyinglin Date: Thu, 4 Jan 2024 16:23:57 +0800 Subject: [PATCH] 1 --- app/Http/Controllers/Admin/StatisticsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Admin/StatisticsController.php b/app/Http/Controllers/Admin/StatisticsController.php index 3f7205b..15ee1b4 100755 --- a/app/Http/Controllers/Admin/StatisticsController.php +++ b/app/Http/Controllers/Admin/StatisticsController.php @@ -70,7 +70,7 @@ class StatisticsController extends CommonController $mm = $i < 10 ? "0" . $i : $i; $months[] = date("Y") . "-" . $mm; } - + dump($months); view()->share(compact("months")); return $months; }