MCPcopy Create free account
hub / github.com/CoderOpen/waimai / User

Class User

app/Models/User.php:8–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6use Illuminate\Foundation\Auth\User as Authenticatable;
7
8class User extends Authenticatable
9{
10 use Notifiable;
11
12 /**
13 * The attributes that are mass assignable.
14 *
15 * @var array
16 */
17 protected $fillable = [
18 'name', 'email', 'password',
19 ];
20
21 /**
22 * The attributes that should be hidden for arrays.
23 *
24 * @var array
25 */
26 protected $hidden = [
27 'password', 'remember_token',
28 ];
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected