weather = $weather; } public function index(){ //$this->testWeater(); return $this->testDebugar(); } private function testWeater(){ $response = $this->weather->getWeather('深圳'); dd($response); } private function testDebugar(){ $user = \App\Models\User::where('name', '柳红')->first(); return view('welcome', ['user' => $user]); } }