Skip to content

Instantly share code, notes, and snippets.

@jobcerto
Created May 24, 2018 02:26
Show Gist options
  • Save jobcerto/913ed2f26882ca8bdc2ad16b4e0c3f96 to your computer and use it in GitHub Desktop.
Save jobcerto/913ed2f26882ca8bdc2ad16b4e0c3f96 to your computer and use it in GitHub Desktop.
<?php
namespace App\Shared\Models;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
use Notifiable;
protected $fillable = [
'name', 'email', 'password',
];
protected $hidden = [
'password', 'remember_token',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment