countryRepo = $countryRepository; } /** * @param $countryId * * @return \Illuminate\Http\JsonResponse */ public function index($countryId) { $country = $this->countryRepo->findCountryById($countryId); $countryRepo = new CountryRepository($country); $data = $countryRepo->listStates(); return response()->json(compact('data')); } }