Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Last active November 19, 2021 09:09
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 cursosdesarrolloweb/e3ff093c2fafa78d83f6058cf77122a1 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/e3ff093c2fafa78d83f6058cf77122a1 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable implements MustVerifyEmail
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password', 'active', 'role_id',
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment