|
@@ -23,7 +23,7 @@ class SeminarSignUpService
|
23
|
23
|
public function insertData(
|
24
|
24
|
$firstName, $lastName, $companyName, $companyEmail, $backupEmail, $phoneNumber, $country, $trackNo,
|
25
|
25
|
$registeredSession, $lunchOptions, $typeOfIndustry, $typeOfJob, $jobTitle, $trackOfInterest, $areaOfInterest,
|
26
|
|
- $howToKnowAboutTheEvent, $consentAcceptEmail, $consentPrivacyPolicy)
|
|
26
|
+ $howToKnowAboutTheEvent, $consentAcceptEmail, $consentPrivacyPolicy, $media)
|
27
|
27
|
{
|
28
|
28
|
|
29
|
29
|
$this->signupDb
|
|
@@ -46,6 +46,7 @@ class SeminarSignUpService
|
46
|
46
|
'howToKnowAboutTheEvent' => $howToKnowAboutTheEvent,
|
47
|
47
|
'consentAcceptEmail' => $consentAcceptEmail,
|
48
|
48
|
'consentPrivacyPolicy' => $consentPrivacyPolicy,
|
|
49
|
+ 'media' => $media,
|
49
|
50
|
'createDate' => date("Y-m-d H:i:s"),
|
50
|
51
|
]);
|
51
|
52
|
|