Skip to content

Instantly share code, notes, and snippets.

@DavidStrada
Created December 28, 2015 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidStrada/d888c88a624a69e6d9b5 to your computer and use it in GitHub Desktop.
Save DavidStrada/d888c88a624a69e6d9b5 to your computer and use it in GitHub Desktop.
user model
<?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',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment