code)->get(); return response()->json($kota); } public function getKecamatan(Request $request) { $kecamatan = District::where('city_code', $request->code)->get(); return response()->json($kecamatan); } public function getDesa(Request $request) { $desa = Village::where('district_code', $request->code)->get(); return response()->json($desa); } }