setMonthIncome(); $this->setMonthRegisterTotal(); } private function setMonthIncome() { Redis::set( 'month_income', Order::where('created_at', '>=', strtotime(date('Y-m-1'))) ->where('created_at', '<', time()) ->where('status', '3') ->sum('total_amount') ); } private function setMonthRegisterTotal() { Redis::set( 'month_register_total', User::where('created_at', '>=', strtotime(date('Y-m-1'))) ->where('created_at', '<', time()) ->count() ); } }