hypothetical/app/User.php

30 lines
511 B
PHP
Raw Normal View History

2016-08-19 16:38:49 -04:00
<?php
2016-08-19 16:38:49 -04:00
namespace App;
use Illuminate\Notifications\Notifiable;
2016-01-03 23:55:13 -05:00
use Illuminate\Foundation\Auth\User as Authenticatable;
2016-08-19 16:38:49 -04:00
class User extends Authenticatable
{
use Notifiable;
2016-08-16 22:00:39 -04:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
2016-01-03 23:55:13 -05:00
protected $fillable = [
'name', 'email', 'password',
];
/**
2016-08-19 16:38:49 -04:00
* The attributes that should be hidden for arrays.
*
* @var array
*/
2016-01-03 23:55:13 -05:00
protected $hidden = [
'password', 'remember_token',
];
}