-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUser.php
More file actions
128 lines (111 loc) · 2.83 KB
/
Copy pathUser.php
File metadata and controls
128 lines (111 loc) · 2.83 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
<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
use Whilesmart\ModelConfiguration\Traits\Configurable;
use Whilesmart\Roles\Traits\HasRoles;
use Whilesmart\UserDevices\Traits\HasDevices;
class User extends Authenticatable
{
use Configurable;
use HasApiTokens;
use HasDevices;
use HasFactory;
use HasRoles;
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'first_name',
'last_name',
'username',
'phone',
'email',
'password',
'email_verified_at',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $appends = [
'avatar_url',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'email_verified_at' => 'datetime',
'password' => 'hashed',
];
public function categories(): HasMany
{
return $this->hasMany(Category::class);
}
public function groups(): HasMany
{
return $this->hasMany(Group::class);
}
public function parties(): HasMany
{
return $this->hasMany(Party::class);
}
public function wallets(): HasMany
{
return $this->hasMany(Wallet::class);
}
public function transactions(): HasMany
{
return $this->hasMany(Transaction::class);
}
public function transfers(): HasMany
{
return $this->hasMany(Transfer::class);
}
public function fileImports(): HasMany
{
return $this->hasMany(FileImport::class);
}
public function reminders(): HasMany
{
return $this->hasMany(Reminder::class);
}
public function notifications(): HasMany
{
return $this->hasMany(Notification::class);
}
public function getAvatarUrlAttribute(): ?string
{
return $this->getConfigValue('avatar');
}
protected static function booted()
{
static::created(function ($user) {
// Automatically enable this setting for every new user
$user->setConfigValue(
'create-transfers-for-myself-transactions',
true,
\Whilesmart\ModelConfiguration\Enums\ConfigValueType::Boolean
);
});
}
}