|
@@ -161,26 +161,27 @@ class SignupManagementController extends Controller
|
161
|
161
|
}
|
162
|
162
|
|
163
|
163
|
$rows[] = [
|
164
|
|
- '序號' => $data['id'],
|
165
|
|
- 'firstName' => $this->safeDecrypt($data['firstName'], 'arm'),
|
166
|
|
- 'lastName' => $this->safeDecrypt($data['lastName'], 'arm'),
|
167
|
|
- 'companyName' => $this->safeDecrypt($data['companyName'], 'arm'),
|
168
|
|
- 'companyEmail' => $this->safeDecrypt($data['companyEmail'], 'arm'),
|
169
|
|
- 'backupEmail' => $backupEmail,
|
170
|
|
- 'phoneNumber' => $this->safeDecrypt($data['phoneNumber'], 'arm'),
|
171
|
|
- 'country' => $data['country'],
|
172
|
|
- 'trackNo' => $data['trackNo'],
|
173
|
|
- 'registeredSession(TW only)' => $data['registeredSession'],
|
174
|
|
- 'lunchOptions(TW only)' => $data['lunchOptions'],
|
175
|
|
- 'typeOfIndustry' => $data['typeOfIndustry'],
|
176
|
|
- 'typeOfJob' => $data['typeOfJob'],
|
177
|
|
- 'jobTitle' => $data['jobTitle'],
|
178
|
|
- 'trackOfInterest' => $data['trackOfInterest'],
|
179
|
|
- 'areaOfInterest' => $data['areaOfInterest'],
|
180
|
|
- 'howToKnowAboutTheEvent' => $data['howToKnowAboutTheEvent'],
|
181
|
|
- 'consentAcceptEmail' => $data['consentAcceptEmail'],
|
182
|
|
- 'consentPrivacyPolicy' => $data['consentPrivacyPolicy'],
|
183
|
|
- '報名時間' => $data['createDate'],
|
|
164
|
+ 'Registered Session(TW only)' => $data['registeredSession'],
|
|
165
|
+ 'Track No' => $data['trackNo'],
|
|
166
|
+ 'Registered Date' => $data['createDate'],
|
|
167
|
+ 'First Name' => $this->safeDecrypt($data['firstName'], 'arm'),
|
|
168
|
+ 'Last Name' => $this->safeDecrypt($data['lastName'], 'arm'),
|
|
169
|
+ 'Company Name' => $this->safeDecrypt($data['companyName'], 'arm'),
|
|
170
|
+ 'Type Of Industry' => $data['typeOfIndustry'],
|
|
171
|
+ 'Type Of Job' => $data['typeOfJob'],
|
|
172
|
+ 'Job Title' => $data['jobTitle'],
|
|
173
|
+ 'Phone Number' => $this->safeDecrypt($data['phoneNumber'], 'arm'),
|
|
174
|
+ 'Company Email' => $this->safeDecrypt($data['companyEmail'], 'arm'),
|
|
175
|
+ 'Backup Email' => $backupEmail,
|
|
176
|
+ 'Lunch Options(TW only)' => $data['lunchOptions'],
|
|
177
|
+ 'How To Know About The Event' => $data['howToKnowAboutTheEvent'],
|
|
178
|
+
|
|
179
|
+ // 'Serial No' => $data['id'],
|
|
180
|
+ // 'Country' => $data['country'],
|
|
181
|
+ // 'Track Of Interest' => $data['trackOfInterest'],
|
|
182
|
+ // 'Area Of Interest' => $data['areaOfInterest'],
|
|
183
|
+ // 'Consent Accept Email' => $data['consentAcceptEmail'],
|
|
184
|
+ // 'Consent Privacy Policy' => $data['consentPrivacyPolicy'],
|
184
|
185
|
];
|
185
|
186
|
}
|
186
|
187
|
|