sdate = date('Y-m-d', strtotime('-1 month')); $this->edate = date('Y-m-d'); $this->homeModel = new HomeModel(); } public function index() { } public function dashboard(): string { $notice = $this->homeModel->getNoticeList(); $statistics = $this->homeModel->getHomeStatistics($this->sdate, $this->edate); return view('pages/home/dashboard', [ 'menus' => $this->data, 'notice' => $notice, 'statistics' => $statistics, ]); } }