-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccountRegistration.php
More file actions
129 lines (114 loc) · 2.28 KB
/
Copy pathAccountRegistration.php
File metadata and controls
129 lines (114 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
namespace Apolune\Account;
use Carbon\Carbon;
use Apolune\Core\Database\Eloquent\Model;
use Apolune\Contracts\Account\AccountRegistration as Contract;
class AccountRegistration extends Model implements Contract
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = '__pandaac_registration';
/**
* Retrieve the firstname.
*
* @return string
*/
public function firstname()
{
return $this->firstname;
}
/**
* Retrieve the surname.
*
* @return string
*/
public function surname()
{
return $this->surname;
}
/**
* Retrieve the country.
*
* @return \Apolune\Contracts\Server\Country
*/
public function country()
{
return country($this->country);
}
/**
* Retrieve the country code.
*
* @return string
*/
public function countryCode()
{
return $this->country;
}
/**
* Retrieve the birthday.
*
* @return \Carbon\Carbon
*/
public function birthday()
{
return new Carbon($this->birthday);
}
/**
* Retrieve the gender.
*
* @return string
*/
public function gender()
{
return $this->gender;
}
/**
* Retrieve the requested date.
*
* @return \Carbon\Carbon
*/
public function requestDate()
{
$days = config('pandaac.apolune.account.registration-days');
return (new Carbon($this->request_date))->addDays($days);
}
/**
* Retrieve the requested firstname.
*
* @return string
*/
public function requestFirstname()
{
return $this->request_firstname;
}
/**
* Retrieve the requested surname.
*
* @return string
*/
public function requestSurname()
{
return $this->request_surname;
}
/**
* Retrieve the requested country.
*
* @return \Apolune\Contracts\Server\Country
*/
public function requestCountry()
{
return country($this->request_country);
}
/**
* Retrieve the requested country code.
*
* @return string
*/
public function requestCountryCode()
{
return $this->request_country;
}
}