get()->pluck('title', 'id'); return response()->json(['success' => $program], $this->successStatus); } if ($action == "travel_country") { $program = TravelCountry::all()->pluck('name', 'id');; return response()->json(['success' => $program], $this->successStatus); } $ret = []; return response()->json(['success' => $ret], $this->successStatus); } }