Skip to content

Instantly share code, notes, and snippets.

@vmitchell85
Last active February 12, 2018 17:47
Show Gist options
  • Save vmitchell85/48b96133388ccd3b56bada367571f201 to your computer and use it in GitHub Desktop.
Save vmitchell85/48b96133388ccd3b56bada367571f201 to your computer and use it in GitHub Desktop.
<?php
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password',
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment