-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.php
More file actions
39 lines (34 loc) · 770 Bytes
/
User.php
File metadata and controls
39 lines (34 loc) · 770 Bytes
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
<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email','password','phone',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
public function tarjetas()
{
return $this->hasMany('App\Tarjeta','id_user');
}
public function recargas()
{
return $this->hasMany('App\Recarga','id_vendedor');
}
public function lectores()
{
return $this->hasMany('App\Lector','id_propietario');
}
}