Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class Profile extends Base |
||
6 | { |
||
7 | use Traits\HasProperty; |
||
|
|||
8 | |||
9 | /** |
||
10 | * Indicates if the model should be timestamped. |
||
11 | * |
||
12 | * @var bool |
||
13 | */ |
||
14 | public $timestamps = false; |
||
15 | |||
16 | /** |
||
17 | * The attributes that are mass assignable. |
||
18 | * |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $fillable = [ |
||
22 | 'address', |
||
23 | 'city', |
||
24 | 'country_code', |
||
25 | ]; |
||
26 | |||
27 | public function user() |
||
32 |