public function allElementsV2() { $output = ['tags' => Tag::get(), 'cities' => Cities::with('Areas')->get(), 'states' => States::get(), 'countries' => Countries::get(), 'appElements' => AppElement::find(1)]; return response()->json(['response_code' => 'RES_STS', 'messages' => 'States', 'data' => $output]); }
public function getStates() { return response()->json(['response_code' => 'RES_STS', 'messages' => 'States', 'data' => States::get()]); }