utm tracking in db (#574)

* utm tracking in db

* fix array key bug
This commit is contained in:
Favour Olayinka
2024-09-18 17:50:04 +01:00
committed by GitHub
parent 7f6c21408c
commit a057045ef6
8 changed files with 44 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ class User extends Authenticatable implements JWTSubject
'email',
'password',
'hear_about_us',
'utm_data',
];
/**
@@ -54,6 +55,7 @@ class User extends Authenticatable implements JWTSubject
{
return [
'email_verified_at' => 'datetime',
'utm_data' => 'array',
];
}