1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-01-11 17:11:02 -05:00
hypothetical/app/User.php
2016-01-03 23:55:13 -05:00

26 lines
452 B
PHP

<?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',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
}