-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUser.php
69 lines (59 loc) · 1.47 KB
/
User.php
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
<?php
namespace App\Models;
use Laravel\Sanctum\HasApiTokens;
use Database\Factories\UserFactory;
use Illuminate\Contracts\Auth\CanResetPassword;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class User extends Authenticatable implements CanResetPassword
{
use HasApiTokens;
use Notifiable;
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
'email',
'type',
'password',
'is_admin'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password',
'remember_token',
];
protected $casts = [
'is_admin' => 'boolean',
];
protected static function newFactory(): UserFactory
{
return UserFactory::new();
}
/**
* @return HasMany
*/
public function articles(): HasMany
{
return $this->hasMany(Article::class);
}
public function enrollments(): HasMany
{
return $this->hasMany(Enrollment::class);
}
public function lessons()
{
// User has Many enrollments and each enrollment has many lessons.
return $this->hasManyThrough(Lesson::class, Enrollment::class, 'student_id', 'enrollment_id');
}
}